You must be logged in to view saved presets
Configuration to create an SNS topic and subscription to send notifications using email, http(s) endpoints, or lambda functions. A KMS key can be specified to enable encryption at-rest
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
SnsTopic:
Type: 'AWS::SNS::Topic'
Properties:
Subscription:
- Endpoint: email@example.com
Protocol: email
TopicName: sns-topic
Parameters: {}
Metadata: {}
Conditions: {}