Skip to main content

event_types

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

Overview

Nameevent_types
TypeResource
Idaws.codestar_notifications.event_types

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_type_idstringThe system-generated ID of the event. For a complete list of event types and IDs, see Notification concepts in the Developer Tools Console User Guide.
event_type_namestringThe name of the event.
resource_typestringThe resource type of the event. (pattern: <code>^([a-zA-Z0-9-])+$</code>)
service_namestringThe name of the service for which the event applies.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_event_typesselectregionReturns information about the event types available for configuring notifications.

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

Returns information about the event types available for configuring notifications.

SELECT
event_type_id,
event_type_name,
resource_type,
service_name
FROM aws.codestar_notifications.event_types
WHERE region = '{{ region }}' -- required
;