aws.omics.get_run_task
Example SQL Queries
SELECT * FROMaws.omics.get_run_taskWHERE"id" = 'VALUE'AND "task_id" = 'VALUE';Description
Gets information about a workflow run task.
Table Definition
| Column Name | Column Data Type |
|---|---|
| id Required Input Column The workflow run ID. | VARCHAR |
| task_id Required Input Column The task's ID. | VARCHAR |
| _aws_profile Input Column The AWS profile defines the AWS identity used. It can be defined via credentials or by assuming a IAM role. | STRUCT( |
Show child fields
| |
| _aws_region Input Column The AWS region to use. | VARCHAR |
| cpus The task's CPU usage. | BIGINT |
| creation_time When the task was created. | TIMESTAMP_S |
| failure_reason The reason a task has failed. | VARCHAR |
| gpus The number of Graphics Processing Units (GPU) specified in the task. | BIGINT |
| instance_type The instance type for a task. | VARCHAR |
| log_stream The task's log stream. | VARCHAR |
| memory The task's memory use in gigabytes. | BIGINT |
| name The task's name. | VARCHAR |
| start_time The task's start time. | TIMESTAMP_S |
| status The task's status. | VARCHAR |
| status_message The task's status message. | VARCHAR |
| stop_time The task's stop time. | TIMESTAMP_S |