event_types
Creates, updates, deletes, gets or lists an event_types resource.
Overview
| Name | event_types |
| Type | Resource |
| Id | aws.codestar_notifications.event_types |
Fields
The following fields are returned by SELECT queries:
- list_event_types
| Name | Datatype | Description |
|---|---|---|
event_type_id | string | The 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_name | string | The name of the event. |
resource_type | string | The resource type of the event. (pattern: <code>^([a-zA-Z0-9-])+$</code>) |
service_name | string | The name of the service for which the event applies. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_event_types | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_event_types
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
;