List Sandboxes For Project
codebuild_list_sandboxes_for_project | R Documentation |
Gets a list of sandboxes for a given project¶
Description¶
Gets a list of sandboxes for a given project.
Usage¶
codebuild_list_sandboxes_for_project(projectName, maxResults, sortOrder,
nextToken)
Arguments¶
projectName |
[required] The CodeBuild project name. |
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_for_project(
projectName = "string",
maxResults = 123,
sortOrder = "ASCENDING"|"DESCENDING",
nextToken = "string"
)