Skip to content

Create Run Group

omics_create_run_group R Documentation

Creates a run group

Description

Creates a run group.

Usage

omics_create_run_group(name, maxCpus, maxRuns, maxDuration, tags,
  requestId, maxGpus)

Arguments

name

A name for the group.

maxCpus

The maximum number of CPUs to use in the group.

maxRuns

The maximum number of concurrent runs for the group.

maxDuration

A maximum run time for the group in minutes.

tags

Tags for the group.

requestId

[required] To ensure that requests don't run multiple times, specify a unique ID for each request.

maxGpus

The maximum GPUs that can be used by a run group.

Value

A list with the following syntax:

list(
  arn = "string",
  id = "string",
  tags = list(
    "string"
  )
)

Request syntax

svc$create_run_group(
  name = "string",
  maxCpus = 123,
  maxRuns = 123,
  maxDuration = 123,
  tags = list(
    "string"
  ),
  requestId = "string",
  maxGpus = 123
)