Amazon HealthOmics · JSON Structure

Healthomics Create Run Group Request Structure

Type: object Properties: 7 Required: 1
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

CreateRunGroupRequest is a JSON Structure definition published by Amazon HealthOmics, describing 7 properties, of which 1 is required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

name maxCpus maxRuns maxDuration tags requestId maxGpus

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-create-run-group-request-schema.json",
  "name": "CreateRunGroupRequest",
  "type": "object",
  "required": [
    "requestId"
  ],
  "properties": {
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RunGroupName"
        },
        {
          "description": "A name for the group."
        }
      ]
    },
    "maxCpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateRunGroupRequestMaxCpusInteger"
        },
        {
          "description": "The maximum number of CPUs to use in the group."
        }
      ]
    },
    "maxRuns": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateRunGroupRequestMaxRunsInteger"
        },
        {
          "description": "The maximum number of concurrent runs for the group."
        }
      ]
    },
    "maxDuration": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateRunGroupRequestMaxDurationInteger"
        },
        {
          "description": "A maximum run time for the group in minutes."
        }
      ]
    },
    "tags": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TagMap"
        },
        {
          "description": "Tags for the group."
        }
      ]
    },
    "requestId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/RunGroupRequestId"
        },
        {
          "description": "To ensure that requests don't run multiple times, specify a unique ID for each request."
        }
      ]
    },
    "maxGpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/CreateRunGroupRequestMaxGpusInteger"
        },
        {
          "description": " The maximum GPUs that can be used by a run group. "
        }
      ]
    }
  }
}