flow_execution_messages
Creates, updates, deletes, gets or lists a flow_execution_messages resource.
Overview
| Name | flow_execution_messages |
| Type | Resource |
| Id | aws.iotthingsgraph.flow_execution_messages |
Fields
The following fields are returned by SELECT queries:
- list_flow_execution_messages
| Name | Datatype | Description |
|---|---|---|
event_type | string | The 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_id | string | The unique identifier of the message. |
payload | string | A string containing information about the flow event. |
timestamp | string (date-time) | The date and time when the message was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_flow_execution_messages | select | region | Returns 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_flow_execution_messages
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
;