Skip to main content

event_categories

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

Overview

Nameevent_categories
TypeResource
Idaws.neptune.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.

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 is not currently supported.
SourceTypestringThe type of source that is generating the events. Valid values: db-instance | db-parameter-group | db-security-group | db-snapshot

SELECT examples

Displays a list of categories for all event source types, or, if specified, for a specified source type.

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