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