

翻訳は機械翻訳により提供されています。提供された翻訳内容と英語版の間で齟齬、不一致または矛盾がある場合、英語版が優先します。

# Aurora プロビジョンドスケーリング実行ブロックのサンプルポリシー
<a name="security_iam_region_switch_aurora_provisioned_scaling"></a>

 以下は、Aurora プロビジョンドクラスタースケーリングのリージョンスイッチプランに実行ブロックを追加する場合にアタッチするポリシーの例です。

```
{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeDBInstances",
        "rds:DescribeDBClusters",
        "rds:DescribeGlobalClusters",
        "rds:CreateDBInstance",
        "rds:ModifyDBInstance"
      ],
      "Resource": [
        "arn:aws:rds:{{region}}:{{account-id}}:db:{{instance-name}}",
        "arn:aws:rds:{{region}}:{{account-id}}:cluster:{{cluster-name}}",
        "arn:aws:rds::{{account-id}}:global-cluster:{{global-cluster-name}}"
      ]
    },
    {
      "Effect": "Allow",
      "Action": [
        "rds:DescribeOrderableDBInstanceOptions",
        "ec2:DescribeInstanceTypes"
      ],
      "Resource": "*"
    }
  ]
}
```