flow_executions
Creates, updates, deletes, gets or lists a flow_executions resource.
Overview
| Name | flow_executions |
| Type | Resource |
| Id | aws.iotthingsgraph.flow_executions |
Fields
The following fields are returned by SELECT queries:
- search_flow_executions
| Name | Datatype | Description |
|---|---|---|
created_at | string (date-time) | The date and time when the flow execution summary was created. |
flow_execution_id | string | The ID of the flow execution. |
flow_template_id | string | The 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>) |
status | string | The current status of the flow execution. (RUNNING, ABORTED, SUCCEEDED, FAILED) |
system_instance_id | string | The 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_at | string (date-time) | The date and time when the flow execution summary was last updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
search_flow_executions | select | region | Searches 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- search_flow_executions
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
;