Skip to content

List Build Batches For Project

codebuild_list_build_batches_for_project R Documentation

Retrieves the identifiers of the build batches for a specific project

Description

Retrieves the identifiers of the build batches for a specific project.

Usage

codebuild_list_build_batches_for_project(projectName, filter,
  maxResults, sortOrder, nextToken)

Arguments

projectName

The name of the project.

filter

A BuildBatchFilter object that specifies the filters for the search.

maxResults

The maximum number of results to return.

sortOrder

Specifies the sort order of the returned items. Valid values include:

  • ASCENDING: List the batch build identifiers in ascending order by identifier.

  • DESCENDING: List the batch build identifiers in descending order by identifier.

nextToken

The nextToken value returned from a previous call to list_build_batches_for_project. This specifies the next item to return. To return the beginning of the list, exclude this parameter.

Value

A list with the following syntax:

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

Request syntax

svc$list_build_batches_for_project(
  projectName = "string",
  filter = list(
    status = "SUCCEEDED"|"FAILED"|"FAULT"|"TIMED_OUT"|"IN_PROGRESS"|"STOPPED"
  ),
  maxResults = 123,
  sortOrder = "ASCENDING"|"DESCENDING",
  nextToken = "string"
)