List Fleets
codebuild_list_fleets | R Documentation |
Gets a list of compute fleet names with each compute fleet name representing a single compute fleet¶
Description¶
Gets a list of compute fleet names with each compute fleet name representing a single compute fleet.
Usage¶
codebuild_list_fleets(nextToken, maxResults, sortOrder, sortBy)
Arguments¶
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. |
maxResults |
The maximum number of paginated compute fleets returned per
response. Use |
sortOrder |
The order in which to list compute fleets. Valid values include:
Use |
sortBy |
The criterion to be used to list compute fleet names. Valid values include:
Use |
Value¶
A list with the following syntax:
list(
nextToken = "string",
fleets = list(
"string"
)
)
Request syntax¶
svc$list_fleets(
nextToken = "string",
maxResults = 123,
sortOrder = "ASCENDING"|"DESCENDING",
sortBy = "NAME"|"CREATED_TIME"|"LAST_MODIFIED_TIME"
)