Skip to content

List Component Build Versions

imagebuilder_list_component_build_versions R Documentation

Returns the list of component build versions for the specified component version Amazon Resource Name (ARN)

Description

Returns the list of component build versions for the specified component version Amazon Resource Name (ARN).

Usage

imagebuilder_list_component_build_versions(componentVersionArn,
  maxResults, nextToken)

Arguments

componentVersionArn

The component version Amazon Resource Name (ARN) whose versions you want to list.

maxResults

Specify the maximum number of 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(
  requestId = "string",
  componentSummaryList = list(
    list(
      arn = "string",
      name = "string",
      version = "string",
      platform = "Windows"|"Linux"|"macOS",
      supportedOsVersions = list(
        "string"
      ),
      state = list(
        status = "DEPRECATED"|"DISABLED"|"ACTIVE",
        reason = "string"
      ),
      type = "BUILD"|"TEST",
      owner = "string",
      description = "string",
      changeDescription = "string",
      dateCreated = "string",
      tags = list(
        "string"
      ),
      publisher = "string",
      obfuscate = TRUE|FALSE
    )
  ),
  nextToken = "string"
)

Request syntax

svc$list_component_build_versions(
  componentVersionArn = "string",
  maxResults = 123,
  nextToken = "string"
)