HEX
Server: LiteSpeed
System: Linux ip-172-31-76-142.ec2.internal 4.14.158-129.185.amzn2.x86_64 #1 SMP Tue Dec 24 03:15:32 UTC 2019 x86_64
User: 69b4844ae61d4e92bf26ad98af552775 (1065)
PHP: 7.2.27
Disabled: exec,passthru,shell_exec,system,eval
Upload Files
File: //lib/python2.7/site-packages/awscli/examples/rds/describe-events.rst
**To describe events**

The following ``describe-events`` example retrieves details for the events that have occurred for the specified DB instance. ::

    aws rds describe-events \
        --source-identifier test-instance \
        --source-type db-instance

Output::

    {
        "Events": [
            {
                "SourceType": "db-instance",
                "SourceIdentifier": "test-instance",
                "EventCategories": [
                    "backup"
                ],
                "Message": "Backing up DB instance",
                "Date": "2018-07-31T23:09:23.983Z",
                "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance"
            },
            {
                "SourceType": "db-instance",
                "SourceIdentifier": "test-instance",
                "EventCategories": [
                    "backup"
                ],
                "Message": "Finished DB Instance backup",
                "Date": "2018-07-31T23:15:13.049Z",
                "SourceArn": "arn:aws:rds:us-east-1:123456789012:db:test-instance"
            }
        ]
    }