List Build Batches
| codebuild_list_build_batches | R Documentation | 
Retrieves the identifiers of your build batches in the current region¶
Description¶
Retrieves the identifiers of your build batches in the current region.
Usage¶
codebuild_list_build_batches(filter, maxResults, sortOrder, nextToken)
Arguments¶
| filter | A  | 
| maxResults | The maximum number of results to return. | 
| sortOrder | Specifies the sort order of the returned items. Valid values include: 
 | 
| nextToken | The  | 
Value¶
A list with the following syntax:
list(
  ids = list(
    "string"
  ),
  nextToken = "string"
)
Request syntax¶
svc$list_build_batches(
  filter = list(
    status = "SUCCEEDED"|"FAILED"|"FAULT"|"TIMED_OUT"|"IN_PROGRESS"|"STOPPED"
  ),
  maxResults = 123,
  sortOrder = "ASCENDING"|"DESCENDING",
  nextToken = "string"
)