0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 3.141.45.90


Current Path : /proc/thread-self/root/usr/share/doc/awscli/examples/rds/
Upload File :
Current File : //proc/thread-self/root/usr/share/doc/awscli/examples/rds/describe-event-subscriptions.rst

**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...
        ]
    }