sns:RemovePermission is a Permissions management access-level action in the sns service. Grants permission to remove a statement from a topic's access control policy
ARNs that sns:RemovePermission can be scoped to in an IAM policy.
Keys you can use in the Condition block of a policy that grants sns:RemovePermission.
Filters access by tags associated with the resource
A minimal policy that allows sns:RemovePermission. Replace "Resource": "*" with a specific ARN to follow least privilege.
{
"Version": "2012-10-17",
"Statement": [
{
"Sid": "AllowSnsRemovePermission",
"Effect": "Allow",
"Action": "sns:RemovePermission",
"Resource": "*"
}
]
}