Skip to main content

workflow_build_versions

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

Overview

Nameworkflow_build_versions
TypeResource
Idaws.imagebuilder.workflow_build_versions

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
namestringThe name of the workflow. (pattern: <code>^[-_A-Za-z-0-9][-_A-Za-z0-9 ]{1,126}[-_A-Za-z-0-9]$</code>)
arnstringThe 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_descriptionstringThe change description for the current version of the workflow resource.
date_createdstringThe original creation date of the workflow resource.
descriptionstringDescribes the workflow.
ownerstringThe owner of the workflow resource.
stateobjectDescribes the current state of the workflow resource.
tagsobjectContains a list of tags that are defined for the workflow.
type_stringThe image creation stage that this workflow applies to. Image Builder currently supports build and test stage workflows. (BUILD, TEST, DISTRIBUTION)
versionstringThe version of the workflow. (pattern: <code>^[0-9]+.[0-9]+.[0-9]+$</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_workflow_build_versionsselectregionReturns 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.

NameDatatypeDescription
regionstringAWS region (default: us-east-1)

SELECT examples

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
;