event_configurations
Creates, updates, deletes, gets or lists an event_configurations resource.
Overview
| Name | event_configurations |
| Type | Resource |
| Id | aws.iotwireless.event_configurations |
Fields
The following fields are returned by SELECT queries:
- list_event_configurations
| Name | Datatype | Description |
|---|---|---|
event_configurations_list | array | Event configurations of all events for a single resource. |
next_token | string | To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_event_configurations | select | resourceType, region | maxResults, nextToken | List event configurations where at least one event topic has been enabled. |
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) |
resourceType | string | Resource type to filter event configurations. |
maxResults | integer | |
nextToken | string | To retrieve the next set of results, the nextToken value from a previous response; otherwise null to receive the first set of results. |
SELECT examples
- list_event_configurations
List event configurations where at least one event topic has been enabled.
SELECT
event_configurations_list,
next_token
FROM aws.iotwireless.event_configurations
WHERE resourceType = '{{ resourceType }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;