Skip to content

List Workflow Build Versions

imagebuilder_list_workflow_build_versions R Documentation

Returns a list of build versions for a specific workflow resource

Description

Returns a list of build versions for a specific workflow resource.

Usage

imagebuilder_list_workflow_build_versions(workflowVersionArn,
  maxResults, nextToken)

Arguments

workflowVersionArn

[required] The Amazon Resource Name (ARN) of the workflow resource for which to get a list of build versions.

maxResults

The maximum items to return in a request.

nextToken

A token to specify where to start paginating. This is the nextToken from a previously truncated response.

Value

A list with the following syntax:

list(
  workflowSummaryList = list(
    list(
      arn = "string",
      name = "string",
      version = "string",
      description = "string",
      changeDescription = "string",
      type = "BUILD"|"TEST"|"DISTRIBUTION",
      owner = "string",
      state = list(
        status = "DEPRECATED",
        reason = "string"
      ),
      dateCreated = "string",
      tags = list(
        "string"
      )
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_workflow_build_versions(
  workflowVersionArn = "string",
  maxResults = 123,
  nextToken = "string"
)