List Run Groups
omics_list_run_groups | R Documentation |
Retrieves a list of run groups¶
Description¶
Retrieves a list of run groups.
Usage¶
Arguments¶
name
The run groups' name.
startingToken
Specify the pagination token from a previous request to retrieve the next page of results.
maxResults
The maximum number of run groups to return in one page of results.
Value¶
A list with the following syntax:
list(
items = list(
list(
arn = "string",
id = "string",
name = "string",
maxCpus = 123,
maxRuns = 123,
maxDuration = 123,
creationTime = as.POSIXct(
"2015-01-01"
),
maxGpus = 123
)
),
nextToken = "string"
)