SNS Policies
SNS Policies
- SNS Read Write Policy:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
{ "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Action": [ "sns:Publish", "sns:Subscribe", "sns:CreateTopic", "sns:GetTopicAttributes", "sns:SetTopicAttributes", "sns:TagResource", "sns:UntagResource", "sns:ListTagsForResource", "sns:ListSubscriptionsByTopic" ], "Resource": [ "arn:aws:sns:us-east-1::mysnsapp" ] } ] }
This post is licensed under CC BY 4.0 by the author.