Skip to main content

flow_execution_records

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

Overview

Nameflow_execution_records
TypeResource
Idaws.appflow.flow_execution_records

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
flow_executionsarrayReturns a list of all instances when this flow was run.
next_tokenstringThe pagination token for the next page of data. (pattern: <code>\S+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
describe_flow_execution_recordsselectregionFetches 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

Fetches the execution history of the flow.

SELECT
flow_executions,
next_token
FROM aws.appflow.flow_execution_records
WHERE region = '{{ region }}' -- required
;