Skip to main content

event_categories

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

Overview

Nameevent_categories
TypeResource
Idaws.rds.event_categories

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_categoriesstringThe event categories for the specified source type
source_typestringThe source type that the returned categories belong to

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_event_categoriesselectregionSourceType, FiltersDisplays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide or the Amazon Aurora 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)
FiltersarrayThis parameter isn't currently supported.
SourceTypestringThe type of source that is generating the events. For RDS Proxy events, specify db-proxy. Valid Values: db-instance | db-cluster | db-parameter-group | db-security-group | db-snapshot | db-cluster-snapshot | db-proxy

SELECT examples

Displays a list of categories for all event source types, or, if specified, for a specified source type. You can also see this list in the "Amazon RDS event categories and event messages" section of the Amazon RDS User Guide or the Amazon Aurora User Guide .

SELECT
event_categories,
source_type
FROM aws.rds.event_categories
WHERE region = '{{ region }}' -- required
AND SourceType = '{{ SourceType }}'
AND Filters = '{{ Filters }}'
;