workflow_build_versions
Creates, updates, deletes, gets or lists a workflow_build_versions resource.
Overview
| Name | workflow_build_versions |
| Type | Resource |
| Id | aws.imagebuilder.workflow_build_versions |
Fields
The following fields are returned by SELECT queries:
- list_workflow_build_versions
| Name | Datatype | Description |
|---|---|---|
name | string | The name of the workflow. (pattern: <code>^[-_A-Za-z-0-9][-_A-Za-z0-9 ]{1,126}[-_A-Za-z-0-9]$</code>) |
arn | string | The Amazon Resource Name (ARN) of the workflow resource. (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-_]+/x.x.x$</code>) |
change_description | string | The change description for the current version of the workflow resource. |
date_created | string | The original creation date of the workflow resource. |
description | string | Describes the workflow. |
owner | string | The owner of the workflow resource. |
state | object | Describes the current state of the workflow resource. |
tags | object | Contains a list of tags that are defined for the workflow. |
type_ | string | The image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows. (BUILD, TEST, DISTRIBUTION) |
version | string | The version of the workflow. (pattern: <code>^[0-9]+.[0-9]+.[0-9]+$</code>) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_workflow_build_versions | select | region | Returns a list of build versions for a specific workflow resource. |
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_workflow_build_versions
Returns a list of build versions for a specific workflow resource.
SELECT
name,
arn,
change_description,
date_created,
description,
owner,
state,
tags,
type_,
version
FROM aws.imagebuilder.workflow_build_versions
WHERE region = '{{ region }}' -- required
;