Amazon HealthOmics · Schema

GetRunTaskResponse

BioinformaticsGenomicsHealthcareLife SciencesCloud Computing

Properties

Name Type Description
taskId object
status object
name object
cpus object
memory object
creationTime object
startTime object
stopTime object
statusMessage object
logStream object
gpus object
View JSON Schema on GitHub

JSON Schema

healthomics-get-run-task-response-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-get-run-task-response-schema.json",
  "title": "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. "
        }
      ]
    }
  }
}