event_categories
Creates, updates, deletes, gets or lists an event_categories resource.
Overview
| Name | event_categories |
| Type | Resource |
| Id | aws.dms.event_categories |
Fields
The following fields are returned by SELECT queries:
- describe_event_categories
| Name | Datatype | Description |
|---|---|---|
event_category_group_list | array | A list of event categories. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_event_categories | select | region | Lists categories for all event source types, or, if specified, for a specified source type. You can see a list of the event categories and source types in 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_event_categories
Lists categories for all event source types, or, if specified, for a specified source type. You can see a list of the event categories and source types in Working with Events and Notifications in the Database Migration Service User Guide.
SELECT
event_category_group_list
FROM aws.dms.event_categories
WHERE region = '{{ region }}' -- required
;