CfnTopicPolicyProps
- class aws_cdk.aws_sns.CfnTopicPolicyProps(*, policy_document, topics)
Bases:
object
Properties for defining a
CfnTopicPolicy
.- Parameters:
policy_document (
Any
) – A policy document that contains permissions to add to the specified SNS topics.topics (
Sequence
[str
]) – The Amazon Resource Names (ARN) of the topics to which you want to add the policy. You can use the[Ref](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ref.html)
function to specify an[AWS::SNS::Topic](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topic.html)
resource.
- See:
http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topicpolicy.html
- ExampleMetadata:
fixture=_generated
Example:
# The code below shows an example of how to instantiate this type. # The values are placeholders you should change. from aws_cdk import aws_sns as sns # policy_document: Any cfn_topic_policy_props = sns.CfnTopicPolicyProps( policy_document=policy_document, topics=["topics"] )
Attributes
- policy_document
A policy document that contains permissions to add to the specified SNS topics.
- topics
The Amazon Resource Names (ARN) of the topics to which you want to add the policy.
You can use the
[Ref](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/intrinsic-function-reference-ref.html)
function to specify an[AWS::SNS::Topic](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topic.html)
resource.