You must be logged in to view saved presets
Custom RDS Event Subscription template to allow users to configure notifications for RDS Events (provided through an SNS topic)
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-instance
Parameters: {}
Metadata: {}
Conditions: {}