sns:ListTagsForResource

Read

sns:ListTagsForResource is a Read access-level action in the sns service. Grants permission to list all tags added to the specified Amazon SNS topic

Resource types

ARNs that sns:ListTagsForResource can be scoped to in an IAM policy.

arn:${Partition}:sns:${Region}:${Account}:${TopicName}
topic

Condition keys

Keys you can use in the Condition block of a policy that grants sns:ListTagsForResource.

aws:ResourceTag/${TagKey} String

Filters access by tags associated with the resource

Example IAM policy

A minimal policy that allows sns:ListTagsForResource. Replace "Resource": "*" with a specific ARN to follow least privilege.

{
  "Version": "2012-10-17",
  "Statement": [
    {
      "Sid": "AllowSnsListTagsForResource",
      "Effect": "Allow",
      "Action": "sns:ListTagsForResource",
      "Resource": "*"
    }
  ]
}

Related actions in sns

View all sns actions →