LoginSignup
0
0

More than 5 years have passed since last update.

sqs:ListQueuesのポリシー設定

Posted at

sqs:SendMessageなどと異なり、sqs:ListQueuesはキューのリストを参照する必要があるので、以下のようなポリシー設定が必要になる。

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Effect": "Allow",
            "Action": [
                "sqs:ListQueues"
            ],
            "Resource": "arn:aws:sqs:<region>:<account_ID>:*"
        }
    ]
}
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0