Skip to content

List Sandboxes

codebuild_list_sandboxes R Documentation

Gets a list of sandboxes

Description

Gets a list of sandboxes.

Usage

codebuild_list_sandboxes(maxResults, sortOrder, nextToken)

Arguments

maxResults

The maximum number of sandbox records to be retrieved.

sortOrder

The order in which sandbox records should be retrieved.

nextToken

The next token, if any, to get paginated results. You will get this value from previous execution of list sandboxes.

Value

A list with the following syntax:

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

Request syntax

svc$list_sandboxes(
  maxResults = 123,
  sortOrder = "ASCENDING"|"DESCENDING",
  nextToken = "string"
)