sns:CreateTopic

Write

sns:CreateTopic is a Write access-level action in the sns service. Grants permission to create a topic to which notifications can be published

Resource types

ARNs that sns:CreateTopic 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:CreateTopic.

aws:ResourceTag/${TagKey} String

Filters access by tags associated with the resource

Dependent actions

To use sns:CreateTopic you may also need to grant:

Example IAM policy

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

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

Related actions in sns

View all sns actions →