Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
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: {}