Working with RDS Proxy events - Amazon Aurora
Services or capabilities described in Amazon Web Services documentation might vary by Region. To see the differences applicable to the China Regions, see Getting Started with Amazon Web Services in China (PDF).

Working with RDS Proxy events

An event indicates a change in an environment such as an Amazon environment or a service or application from a software as a service (SaaS) partner. Or, it can be one of your own custom applications or services. For example, Amazon Aurora generates an event when you create or modify an RDS Proxy. Amazon Aurora delivers events to CloudWatch Events and Amazon EventBridge in near-real time. Following, you can find a list of RDS Proxy events that you can subscribe to and an example of an RDS Proxy event.

For more information about working with events, see the following:

RDS Proxy events

The following table shows the event category and a list of events when an RDS Proxy is the source type.

Category

RDS event ID

Message

Notes

configuration change RDS-EVENT-0204

RDS modified DB proxy name.

configuration change RDS-EVENT-0207

RDS modified the end point of the DB proxy name.

configuration change RDS-EVENT-0213

RDS detected the addition of the DB instance and automatically added it to the target group of the DB proxy name.

configuration change

RDS-EVENT-0213

RDS detected creation of DB instance name and automatically added it to target group name of DB proxy name.

configuration change

RDS-EVENT-0214

RDS detected deletion of DB instance name and automatically removed it from target group name of DB proxy name.

configuration change

RDS-EVENT-0215

RDS detected deletion of DB cluster name and automatically removed it from target group name of DB proxy name.

creation

RDS-EVENT-0203

RDS created DB proxy name.

creation

RDS-EVENT-0206

RDS created endpoint name for DB proxy name.

deletion RDS-EVENT-0205

RDS deleted DB proxy name.

deletion

RDS-EVENT-0208

RDS deleted endpoint name for DB proxy name.

failure

RDS-EVENT-0243

RDS failed to provision capacity for proxy name because there aren't enough IP addresses available in your subnets: name. To fix the issue, make sure that your subnets have the minimum number of unused IP addresses as recommended in the RDS Proxy documentation.

To determine the recommended number for your instance class, see Planning for IP address capacity.

failure

RDS-EVENT-0275

RDS throttled some connections to DB proxy name. The number of simultaneous connection requests from the client to the proxy has exceeded the limit.

The following is an example of an RDS Proxy event in JSON format. The event shows that RDS modified the endpoint named my-endpoint of the RDS Proxy named my-rds-proxy. The event ID is RDS-EVENT-0207.

{ "version": "0", "id": "68f6e973-1a0c-d37b-f2f2-94a7f62ffd4e", "detail-type": "RDS DB Proxy Event", "source": "aws.rds", "account": "123456789012", "time": "2018-09-27T22:36:43Z", "region": "us-east-1", "resources": [ "arn:aws:rds:us-east-1:123456789012:db-proxy:my-rds-proxy" ], "detail": { "EventCategories": [ "configuration change" ], "SourceType": "DB_PROXY", "SourceArn": "arn:aws:rds:us-east-1:123456789012:db-proxy:my-rds-proxy", "Date": "2018-09-27T22:36:43.292Z", "Message": "RDS modified endpoint my-endpoint of DB Proxy my-rds-proxy.", "SourceIdentifier": "my-endpoint", "EventID": "RDS-EVENT-0207" } }