events
Creates, updates, deletes, gets or lists an events resource.
Overview
| Name | events |
| Type | Resource |
| Id | aws.dms.events |
Fields
The following fields are returned by SELECT queries:
- describe_events
| Name | Datatype | Description |
|---|---|---|
date | string (date-time) | The date of the event. |
event_categories | array | The event categories available for the specified source type. |
message | string | The event message. |
source_identifier | string | The identifier of an event source. |
source_type | string | The type of DMS resource that generates events. Valid values: replication-instance | endpoint | replication-task (replication-instance) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_events | select | region | Lists events for a given source identifier and source type. You can also specify a start and end time. For more information on DMS events, see Working with Events and Notifications in the Database Migration Service User Guide. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- describe_events
Lists events for a given source identifier and source type. You can also specify a start and end time. For more information on DMS events, see Working with Events and Notifications in the Database Migration Service User Guide.
SELECT
date,
event_categories,
message,
source_identifier,
source_type
FROM aws.dms.events
WHERE region = '{{ region }}' -- required
;