Skip to main content

flow_executions

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

Overview

Nameflow_executions
TypeResource
Idaws.iotthingsgraph.flow_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
created_atstring (date-time)The date and time when the flow execution summary was created.
flow_execution_idstringThe ID of the flow execution.
flow_template_idstringThe ID of the flow. (pattern: <code>^urn:tdm:(([a-z]{2}-(gov-)?[a-z]{4,9}-[0-9]{1,3}/[0-9]+/)[\p{Alnum}]+(/[\p{Alnum}]+)):([\p{Alpha}]):([\p{Alnum}]+(/[\p{Alnum}]+))$</code>)
statusstringThe current status of the flow execution. (RUNNING, ABORTED, SUCCEEDED, FAILED)
system_instance_idstringThe ID of the system instance that contains the flow. (pattern: <code>^urn:tdm:(([a-z]{2}-(gov-)?[a-z]{4,9}-[0-9]{1,3}/[0-9]+/)[\p{Alnum}]+(/[\p{Alnum}]+)):([\p{Alpha}]):([\p{Alnum}]+(/[\p{Alnum}]+))$</code>)
updated_atstring (date-time)The date and time when the flow execution summary was last updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
search_flow_executionsselectregionSearches for AWS IoT Things Graph workflow execution instances.

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

Searches for AWS IoT Things Graph workflow execution instances.

SELECT
created_at,
flow_execution_id,
flow_template_id,
status,
system_instance_id,
updated_at
FROM aws.iotthingsgraph.flow_executions
WHERE region = '{{ region }}' -- required
;