Skip to main content

flow_execution_messages

Creates, updates, deletes, gets or lists a flow_execution_messages resource.

Overview

Nameflow_execution_messages
TypeResource
Idaws.iotthingsgraph.flow_execution_messages

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
event_typestringThe type of flow event . (EXECUTION_STARTED, EXECUTION_FAILED, EXECUTION_ABORTED, EXECUTION_SUCCEEDED, STEP_STARTED, STEP_FAILED, STEP_SUCCEEDED, ACTIVITY_SCHEDULED, ACTIVITY_STARTED, ACTIVITY_FAILED, ACTIVITY_SUCCEEDED, START_FLOW_EXECUTION_TASK, SCHEDULE_NEXT_READY_STEPS_TASK, THING_ACTION_TASK, THING_ACTION_TASK_FAILED, THING_ACTION_TASK_SUCCEEDED, ACKNOWLEDGE_TASK_MESSAGE)
message_idstringThe unique identifier of the message.
payloadstringA string containing information about the flow event.
timestampstring (date-time)The date and time when the message was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_flow_execution_messagesselectregionReturns a list of objects that contain information about events in a flow execution.

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 a list of objects that contain information about events in a flow execution.

SELECT
event_type,
message_id,
payload,
timestamp
FROM aws.iotthingsgraph.flow_execution_messages
WHERE region = '{{ region }}' -- required
;