RDS Event Subscriptions allow users to configure notifications for RDS Events (provided through an SNS topic). This template configures an event subscription for failure events for RDS Clusters.

The following settings can be customized in this template:

  • Subscription details such as name (CLI & Terraform) and activation status
  • Resource Selection: By default, all resources under the selected type are selected, but specific resource Ids can be provided if required
  • Event Categories: Each resource type supports different categories for notification, all or some of the categories can be selected
  • Notification is configured through SNS. You can create a new SNS topic or provide the ARN of an existing one
Items
2
Size
0.5 KB
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
      EventCategories:
        - failure
Parameters: {}
Metadata: {}
Conditions: {}

Actions



Customize Template

Subscription Settings

Resource Selection

Event Categories

Notification Settings

* Required field