waiting_workflow_steps
Creates, updates, deletes, gets or lists a waiting_workflow_steps resource.
Overview
| Name | waiting_workflow_steps |
| Type | Resource |
| Id | aws.imagebuilder.waiting_workflow_steps |
Fields
The following fields are returned by SELECT queries:
- list_waiting_workflow_steps
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the workflow step. (pattern: <code>^[A-Za-z][A-Za-z0-9-_]{1,99}$</code>) |
action | string | The name of the step action. (pattern: <code>^[A-Za-z][A-Za-z0-9-_]{1,99}$</code>) |
image_build_version_arn | string | The 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_time | string | The timestamp when the workflow step started. |
step_execution_id | string | Uniquely 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_arn | string | The 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_id | string | Uniquely 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:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_waiting_workflow_steps | select | region | Get 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- list_waiting_workflow_steps
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
;