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

Items
1
Size
0.3 KB
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: {}

Actions



Customize Template

* Required field