aws-cdk-lib
Version:
Version 2 of the AWS Cloud Development Kit library
2 lines (1 loc) • 1.48 kB
JavaScript
;var _a;Object.defineProperty(exports,"__esModule",{value:!0}),exports.PublishToTopic=void 0;const JSII_RTTI_SYMBOL_1=Symbol.for("jsii.rtti"),iam=require("../../../aws-iam"),sfn=require("../../../aws-stepfunctions"),resource_arn_suffix_1=require("../resource-arn-suffix");class PublishToTopic{constructor(topic,props){if(this.topic=topic,this.props=props,this.integrationPattern=props.integrationPattern||sfn.ServiceIntegrationPattern.FIRE_AND_FORGET,![sfn.ServiceIntegrationPattern.FIRE_AND_FORGET,sfn.ServiceIntegrationPattern.WAIT_FOR_TASK_TOKEN].includes(this.integrationPattern))throw new Error(`Invalid Service Integration Pattern: ${this.integrationPattern} is not supported to call SNS.`);if(this.integrationPattern===sfn.ServiceIntegrationPattern.WAIT_FOR_TASK_TOKEN&&!sfn.FieldUtils.containsTaskToken(props.message))throw new Error("Task Token is missing in message (pass JsonPath.taskToken somewhere in message)")}bind(_task){return{resourceArn:resource_arn_suffix_1.getResourceArn("sns","publish",this.integrationPattern),policyStatements:[new iam.PolicyStatement({actions:["sns:Publish"],resources:[this.topic.topicArn]})],parameters:{TopicArn:this.topic.topicArn,Message:this.props.message.value,MessageStructure:this.props.messagePerSubscriptionType?"json":void 0,Subject:this.props.subject}}}}exports.PublishToTopic=PublishToTopic,_a=JSII_RTTI_SYMBOL_1,PublishToTopic[_a]={fqn:"aws-cdk-lib.aws_stepfunctions_tasks.PublishToTopic",version:"2.70.0"};