Skip to main content

waiting_workflow_steps

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

Overview

Namewaiting_workflow_steps
TypeResource
Idaws.imagebuilder.waiting_workflow_steps

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the workflow step. (pattern: <code>^[A-Za-z][A-Za-z0-9-_]{1,99}$</code>)
actionstringThe name of the step action. (pattern: <code>^[A-Za-z][A-Za-z0-9-_]{1,99}$</code>)
image_build_version_arnstringThe Amazon Resource Name (ARN) of the image build version that ran the workflow. (pattern: <code>^arn:aws[^:]*:imagebuilder:[^:]+:(?:[0-9]{12}|aws(?:-[a-z-]+)?):image/[a-z0-9-_]+/[0-9]+.[0-9]+.[0-9]+/[0-9]+$</code>)
start_timestringThe timestamp when the workflow step started.
step_execution_idstringUniquely identifies the workflow step that ran for the associated image build version. (pattern: <code>^step-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$</code>)
workflow_build_version_arnstringThe Amazon Resource Name (ARN) of the workflow resource that ran. (pattern: <code>^arn:aws(?:-[a-z]+)*:imagebuilder:[a-z]{2,}(?:-[a-z]+)+-[0-9]+:(?:[0-9]{12}|aws(?:-[a-z-]+)?):workflow/(build|test|distribution)/[a-z0-9-_]+/[0-9]+.[0-9]+.[0-9]+/[0-9]+$</code>)
workflow_execution_idstringUniquely identifies the runtime instance of the workflow that contains the workflow step that ran for the associated image build version. (pattern: <code>^wf-[0-9a-fA-F]{8}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{4}-[0-9a-fA-F]{12}$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_waiting_workflow_stepsselectregionGet a list of workflow steps that are waiting for action for workflows in your Amazon Web Services account.

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

Get a list of workflow steps that are waiting for action for workflows in your Amazon Web Services account.

SELECT
name,
action,
image_build_version_arn,
start_time,
step_execution_id,
workflow_build_version_arn,
workflow_execution_id
FROM aws.imagebuilder.waiting_workflow_steps
WHERE region = '{{ region }}' -- required
;