interface CfnTopicPolicyProps
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.SNS.CfnTopicPolicyProps | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awssns#CfnTopicPolicyProps | 
|  Java | software.amazon.awscdk.services.sns.CfnTopicPolicyProps | 
|  Python | aws_cdk.aws_sns.CfnTopicPolicyProps | 
|  TypeScript | aws-cdk-lib»aws_sns»CfnTopicPolicyProps | 
Properties for defining a CfnTopicPolicy.
See also: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-sns-topicpolicy.html
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { aws_sns as sns } from 'aws-cdk-lib';
declare const policyDocument: any;
const cfnTopicPolicyProps: sns.CfnTopicPolicyProps = {
  policyDocument: policyDocument,
  topics: ['topics'],
};
Properties
| Name | Type | Description | 
|---|---|---|
| policy | any | A policy document that contains permissions to add to the specified SNS topics. | 
| topics | string[] | The Amazon Resource Names (ARN) of the topics to which you want to add the policy. | 
policyDocument
Type:
any
A policy document that contains permissions to add to the specified SNS topics.
topics
Type:
string[]
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.
