Amazon HealthOmics · Schema
TaskListItem
A workflow run task.
BioinformaticsGenomicsHealthcareLife SciencesCloud Computing
Properties
| Name | Type | Description |
|---|---|---|
| taskId | object | |
| status | object | |
| name | object | |
| cpus | object | |
| memory | object | |
| creationTime | object | |
| startTime | object | |
| stopTime | object | |
| gpus | object |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/amazon-healthomics/refs/heads/main/json-schema/healthomics-task-list-item-schema.json",
"title": "TaskListItem",
"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/TaskListItemCpusInteger"
},
{
"description": "The task's CPU count."
}
]
},
"memory": {
"allOf": [
{
"$ref": "#/components/schemas/TaskListItemMemoryInteger"
},
{
"description": "The task's memory use in gigabyes."
}
]
},
"creationTime": {
"allOf": [
{
"$ref": "#/components/schemas/TaskTimestamp"
},
{
"description": "When the task was created."
}
]
},
"startTime": {
"allOf": [
{
"$ref": "#/components/schemas/TaskTimestamp"
},
{
"description": "When the task started."
}
]
},
"stopTime": {
"allOf": [
{
"$ref": "#/components/schemas/TaskTimestamp"
},
{
"description": "When the task stopped."
}
]
},
"gpus": {
"allOf": [
{
"$ref": "#/components/schemas/TaskListItemGpusInteger"
},
{
"description": " The number of Graphics Processing Units (GPU) specified for the task. "
}
]
}
},
"description": "A workflow run task."
}