SNS from existing
🔥 Import
import * as sns from 'aws-cdk-lib/aws-sns';🔥 Code
const myTopic = sns.Topic.fromTopicArn(
this,
'imported-sns-topic',
'EXTERNAL_SNS_TOPIC_ARN',
);Last updated
import * as sns from 'aws-cdk-lib/aws-sns';const myTopic = sns.Topic.fromTopicArn(
this,
'imported-sns-topic',
'EXTERNAL_SNS_TOPIC_ARN',
);Last updated