Skip to main content

event_configurations

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

Overview

Nameevent_configurations
TypeResource
Idaws.iotwireless.event_configurations

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_configurations_listarrayEvent configurations of all events for a single resource.
next_tokenstringTo 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:

NameAccessible byRequired ParamsOptional ParamsDescription
list_event_configurationsselectresourceType, regionmaxResults, nextTokenList 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)
resourceTypestringResource type to filter event configurations.
maxResultsinteger
nextTokenstringTo 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 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 }}'
;