Skip to content

List Builds

codebuild_list_builds R Documentation

Gets a list of build IDs, with each build ID representing a single build

Description

Gets a list of build IDs, with each build ID representing a single build.

Usage

codebuild_list_builds(sortOrder, nextToken)

Arguments

sortOrder

The order to list build IDs. Valid values include:

  • ASCENDING: List the build IDs in ascending order by build ID.

  • DESCENDING: List the build IDs in descending order by build ID.

nextToken

During a previous call, if there are more than 100 items in the list, only the first 100 items are returned, along with a unique string called a nextToken. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.

Value

A list with the following syntax:

list(
  ids = list(
    "string"
  ),
  nextToken = "string"
)

Request syntax

svc$list_builds(
  sortOrder = "ASCENDING"|"DESCENDING",
  nextToken = "string"
)