Omics / Client / create_run_group

create_run_group#

Omics.Client.create_run_group(**kwargs)#

Creates a run group.

See also: AWS API Documentation

Request Syntax

response = client.create_run_group(
    name='string',
    maxCpus=123,
    maxRuns=123,
    maxDuration=123,
    tags={
        'string': 'string'
    },
    requestId='string',
    maxGpus=123
)
Parameters:
  • name (string) – A name for the group.

  • maxCpus (integer) – The maximum number of CPUs to use in the group.

  • maxRuns (integer) – The maximum number of concurrent runs for the group.

  • maxDuration (integer) – A maximum run time for the group in minutes.

  • tags (dict) –

    Tags for the group.

    • (string) –

      • (string) –

  • requestId (string) –

    [REQUIRED]

    To ensure that requests don’t run multiple times, specify a unique ID for each request.

    This field is autopopulated if not provided.

  • maxGpus (integer) – The maximum GPUs that can be used by a run group.

Return type:

dict

Returns:

Response Syntax

{
    'arn': 'string',
    'id': 'string',
    'tags': {
        'string': 'string'
    }
}

Response Structure

  • (dict) –

    • arn (string) –

      The group’s ARN.

    • id (string) –

      The group’s ID.

    • tags (dict) –

      Tags for the run group.

      • (string) –

        • (string) –

Exceptions