Amazon HealthOmics · JSON Structure

Healthomics Get Run Task Response Structure

Type: object Properties: 11
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

GetRunTaskResponse is a JSON Structure definition published by Amazon HealthOmics, describing 11 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

taskId status name cpus memory creationTime startTime stopTime statusMessage logStream gpus

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-get-run-task-response-schema.json",
  "name": "GetRunTaskResponse",
  "type": "object",
  "properties": {
    "taskId": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskId"
        },
        {
          "description": "The task's ID."
        }
      ]
    },
    "status": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskStatus"
        },
        {
          "description": "The task's status."
        }
      ]
    },
    "name": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskName"
        },
        {
          "description": "The task's name."
        }
      ]
    },
    "cpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GetRunTaskResponseCpusInteger"
        },
        {
          "description": "The task's CPU usage."
        }
      ]
    },
    "memory": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GetRunTaskResponseMemoryInteger"
        },
        {
          "description": "The task's memory use in gigabytes."
        }
      ]
    },
    "creationTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "When the task was created."
        }
      ]
    },
    "startTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "The task's start time."
        }
      ]
    },
    "stopTime": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskTimestamp"
        },
        {
          "description": "The task's stop time."
        }
      ]
    },
    "statusMessage": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskStatusMessage"
        },
        {
          "description": "The task's status message."
        }
      ]
    },
    "logStream": {
      "allOf": [
        {
          "$ref": "#/components/schemas/TaskLogStream"
        },
        {
          "description": "The task's log stream."
        }
      ]
    },
    "gpus": {
      "allOf": [
        {
          "$ref": "#/components/schemas/GetRunTaskResponseGpusInteger"
        },
        {
          "description": " The number of Graphics Processing Units (GPU) specified in the task. "
        }
      ]
    }
  }
}