Repository URL to install this package:
| 
      
        
        
        Version: 
        
         
          
          1.21.11  ▾
        
         | 
**To describe event subscriptions**
This example describes all of the Amazon RDS event subscriptions for the current AWS account. ::
    aws rds describe-event-subscriptions
Output::
    {
        "EventSubscriptionsList": [
            {
                "EventCategoriesList": [
                    "backup",
                    "recovery"
                ],
                "Enabled": true,
                "EventSubscriptionArn": "arn:aws:rds:us-east-1:123456789012:es:my-instance-events",
                "Status": "creating",
                "SourceType": "db-instance",
                "CustomerAwsId": "123456789012",
                "SubscriptionCreationTime": "2018-07-31 23:22:01.893",
                "CustSubscriptionId": "my-instance-events",
                "SnsTopicArn": "arn:aws:sns:us-east-1:123456789012:interesting-events"
            },
            ...some output truncated...
        ]
    }