Skip to main content

workflow_runs

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

Overview

Nameworkflow_runs
TypeResource
Idaws.mwaa_serverless.workflow_runs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
override_parametersobjectParameters that were overridden for this specific workflow run.
run_detailobjectDetailed information about the workflow run execution, including timing, status, and task instances.
run_idstringThe unique identifier of this workflow run. (pattern: <code>[a-zA-Z0-9]+[a-zA-Z0-9.-_]*</code>)
run_typestringThe type of workflow run. Values are ON_DEMAND (manually triggered) or SCHEDULED (automatically triggered by schedule). (ON_DEMAND, SCHEDULED)
workflow_arnstringThe Amazon Resource Name (ARN) of the workflow that contains this run. (pattern: <code>arn:aws(?:-(?:cn|us-gov|iso|iso-b|iso-e|iso-f))?:airflow-serverless:([a-z]{2}-[a-z]+-[0-9]{1}):([0-9]{12}):workflow/([a-zA-Z0-9][a-zA-Z0-9.-_]{0,254}-[a-zA-Z0-9]{10})</code>)
workflow_versionstringThe version of the workflow that is used for this run. (pattern: <code>.+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_workflow_runselectregionRetrieves detailed information about a specific workflow run, including its status, execution details, and task instances.
list_workflow_runsselectregionLists all runs for a specified workflow, with optional pagination and filtering support.

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

Retrieves detailed information about a specific workflow run, including its status, execution details, and task instances.

SELECT
override_parameters,
run_detail,
run_id,
run_type,
workflow_arn,
workflow_version
FROM aws.mwaa_serverless.workflow_runs
WHERE region = '{{ region }}' -- required
;