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