Guided Walkthroughs
Step-by-step configuration wizards for your environment
Dedicated Security Account
AWS Backup Strategy
VPC Connectivity Setup
Automated Patching
All Guides
RDS Event Subscriptions allow users to configure notifications for RDS Events (provided through an SNS topic). This template configures an event subscription for RDS Parameter Group configuration changes 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-parameter-group"
EventCategories:
- "configuration change"
Parameters: {}
Metadata: {}
Conditions: {}