Get Run Group
omics_get_run_group | R Documentation |
Gets information about a workflow run group¶
Description¶
Gets information about a workflow run group.
Usage¶
omics_get_run_group(id)
Arguments¶
id |
[required] The group's ID. |
Value¶
A list with the following syntax:
list(
arn = "string",
id = "string",
name = "string",
maxCpus = 123,
maxRuns = 123,
maxDuration = 123,
creationTime = as.POSIXct(
"2015-01-01"
),
tags = list(
"string"
),
maxGpus = 123
)
Request syntax¶
svc$get_run_group(
id = "string"
)