import * as sns from 'aws-cdk-lib/aws-sns';
const myTopic = new sns.Topic(this, 'Topic');
const myTopic = new sns.Topic(this, 'Topic', { fifo: true, });
new cdk.CfnOutput(this, 'topicName', { value: myTopic.topicName, });
Last updated 2 years ago