Skip to main content

data_integration_flow_executions

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

Overview

Namedata_integration_flow_executions
TypeResource
Idaws.supplychain.data_integration_flow_executions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
end_timestring (date-time)The flow execution end timestamp.
execution_idstringThe flow executionId. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
flow_namestringThe flow execution's flowName. (pattern: <code>[A-Za-z0-9-]+</code>)
instance_idstringThe flow execution's instanceId. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>)
messagestringThe failure message (if any) of failed flow execution.
output_metadataobjectThe flow execution output metadata.
source_infoobjectThe source information for a flow execution.
start_timestring (date-time)The flow execution start timestamp.
statusstringThe status of flow execution. (SUCCEEDED, IN_PROGRESS, FAILED)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_data_integration_flow_executionselectinstance_id, flow_name, execution_id, regionGet the flow execution.
list_data_integration_flow_executionsselectinstance_id, flow_name, regionnextToken, maxResultsList flow executions.

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
execution_idstringThe flow execution identifier.
flow_namestringThe flow name.
instance_idstringThe AWS Supply Chain instance identifier.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe number to specify the max number of flow executions to fetch in this paginated request.
nextTokenstringThe pagination token to fetch next page of flow executions.

SELECT examples

Get the flow execution.

SELECT
end_time,
execution_id,
flow_name,
instance_id,
message,
output_metadata,
source_info,
start_time,
status
FROM aws.supplychain.data_integration_flow_executions
WHERE instance_id = '{{ instance_id }}' -- required
AND flow_name = '{{ flow_name }}' -- required
AND execution_id = '{{ execution_id }}' -- required
AND region = '{{ region }}' -- required
;