You need to enable JavaScript to run this app.
IAM

IAM

Copy page
Download PDF
Policy Example
Control permissions based on access time (CurrentTime)
Copy page
Download PDF
Control permissions based on access time (CurrentTime)

Scenario: Access to the Database Transfer Service (DTS) is restricted to no earlier than 23:59:59 UTC on August 30, 2023.
Policy example:

{ 
  "Statement": [ 
    { 
      "Effect": "Allow", 
      "Action": [ 
        "dts:*" 
      ], 
      "Resource": [ 
        "*" 
      ], 
      "Condition": { 
        "DateGreaterThanEquals": { 
          "volc:CurrentTime":"2023-08-30T23:59:59Z" 
        } 
      } 
    } 
  ] 
}

For details of the condition key, please refer to the Condition Use Instructions

Last updated: 2025.06.23 19:21:31