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