flow_execution_records
Creates, updates, deletes, gets or lists a flow_execution_records resource.
Overview
| Name | flow_execution_records |
| Type | Resource |
| Id | aws.appflow.flow_execution_records |
Fields
The following fields are returned by SELECT queries:
- describe_flow_execution_records
| Name | Datatype | Description |
|---|---|---|
flow_executions | array | Returns a list of all instances when this flow was run. |
next_token | string | The pagination token for the next page of data. (pattern: <code>\S+</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
describe_flow_execution_records | select | region | Fetches the execution history of the flow. |
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
- describe_flow_execution_records
Fetches the execution history of the flow.
SELECT
flow_executions,
next_token
FROM aws.appflow.flow_execution_records
WHERE region = '{{ region }}' -- required
;