How to use the aws-cdk.Output function in aws-cdk

To help you get started, we’ve selected a few aws-cdk examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github aws / aws-cdk / packages / aws-cdk-sns / lib / topic-ref.ts View on Github external
public export(): TopicRefProps {
        return {
            topicArn: new Output(this, 'TopicArn', { value: this.topicArn }).makeImportValue(),
        };
    }