You need to enable JavaScript to run this app.
导航

基于访问时间(CurrentTime)控制权限

最近更新时间2023.11.16 19:24:15

首次发布时间2023.09.05 17:54:34

场景: 限制在不早于UTC时间的2023年8月月30日23时59分59秒的时间访问数据库传输服务(DTS)。
策略示例:

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