Skip to content

List Run Groups

omics_list_run_groups R Documentation

Retrieves a list of run groups

Description

Retrieves a list of run groups.

Usage

omics_list_run_groups(name, startingToken, maxResults)

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"
)

Request syntax

svc$list_run_groups(
  name = "string",
  startingToken = "string",
  maxResults = 123
)