Skip to main content

event_categories

Creates, updates, deletes, gets or lists an event_categories resource.

Overview

Nameevent_categories
TypeResource
Idaws.dms.event_categories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_category_group_listarrayA list of event categories.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_event_categoriesselectregionLists 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;