Carova

Serverless AWS Create SNS Topic Template

Create a AWS SNS Topic with your Serverless YAML file. AWS SNS Topics are used to deliver events throughout the AWS environment and to external systems.

AddAdd the following to the resources section of your Serverless file:

1resources: 2 Resources: 3 CustomSnsTopic: 4 Type: AWS::SNS::Topic 5 Properties: 6 TopicName: Customer-SNS-Topic-Name