You must be logged in to view saved presets
RDS Event Subscriptions allow users to configure notifications for RDS Events (provided through an SNS topic). This template configures an event subscription for RDS Cluster Snapshot events
The following settings can be customized in this template:
AWSTemplateFormatVersion: '2010-09-09'
Description: ''
Resources:
SnsForRdsEventSubscription:
Type: 'AWS::SNS::Topic'
Properties:
Subscription:
- Endpoint: email@example.com
Protocol: email
TopicName: rds-subscription-topic
RdsEventSubscription:
Type: 'AWS::RDS::EventSubscription'
Properties:
Enabled: true
SnsTopicArn:
Ref: SnsForRdsEventSubscription
SourceType: db-cluster-snapshot
Parameters: {}
Metadata: {}
Conditions: {}