variant_import_jobs
Creates, updates, deletes, gets or lists a variant_import_jobs resource.
Overview
| Name | variant_import_jobs |
| Type | Resource |
| Id | aws.omics.variant_import_jobs |
Fields
The following fields are returned by SELECT queries:
- get_variant_import_job
- list_variant_import_jobs
| Name | Datatype | Description |
|---|---|---|
id | string | The job's ID. (pattern: <code>[a-f0-9]{8}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{4}-[a-f0-9]{12}</code>) |
annotation_fields | object | The annotation schema generated by the parsed annotation data. |
completion_time | string (date-time) | When the job completed. |
creation_time | string (date-time) | When the job was created. |
destination_name | string | The job's destination variant store. (pattern: <code>([a-z]){1}([a-z0-9_]){2,254}</code>) |
items_ | array | The job's items. |
role_arn | string | The job's service role ARN. (pattern: <code>arn:([^: ]):([^: ]):([^: ]):([0-9]{12}):([^: ])</code>) |
run_left_normalization | boolean | The job's left normalization setting. |
status | string | The job's status. (SUBMITTED, IN_PROGRESS, CANCELLED, COMPLETED, FAILED, COMPLETED_WITH_FAILURES) |
status_message | string | The job's status message. |
update_time | string (date-time) | When the job was updated. |
| Name | Datatype | Description |
|---|---|---|
id | string | The job's ID. |
annotation_fields | object | The annotation schema generated by the parsed annotation data. |
completion_time | string (date-time) | When the job completed. |
creation_time | string (date-time) | When the job was created. |
destination_name | string | The job's destination variant store. |
role_arn | string | The job's service role ARN. (pattern: <code>arn:([^: ]):([^: ]):([^: ]):([0-9]{12}):([^: ])</code>) |
run_left_normalization | boolean | The job's left normalization setting. |
status | string | The job's status. (SUBMITTED, IN_PROGRESS, CANCELLED, COMPLETED, FAILED, COMPLETED_WITH_FAILURES) |
update_time | string (date-time) | When the job was updated. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_variant_import_job | select | job_id, region | Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change. Gets information about a variant import job. | |
list_variant_import_jobs | select | region | maxResults, nextToken | Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change. Retrieves a list of variant import jobs. |
Parameters
Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.
| Name | Datatype | Description |
|---|---|---|
job_id | string | The job's ID. |
region | string | AWS region (default: us-east-1) |
maxResults | integer | The maximum number of import jobs to return in one page of results. |
nextToken | string | Specify the pagination token from a previous request to retrieve the next page of results. |
SELECT examples
- get_variant_import_job
- list_variant_import_jobs
Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change. Gets information about a variant import job.
SELECT
id,
annotation_fields,
completion_time,
creation_time,
destination_name,
items_,
role_arn,
run_left_normalization,
status,
status_message,
update_time
FROM aws.omics.variant_import_jobs
WHERE job_id = '{{ job_id }}' -- required
AND region = '{{ region }}' -- required
;
Amazon Web Services HealthOmics variant stores and annotation stores are no longer open to new customers. Existing customers can continue to use the service as normal. For more information, see Amazon Web Services HealthOmics variant store and annotation store availability change. Retrieves a list of variant import jobs.
SELECT
id,
annotation_fields,
completion_time,
creation_time,
destination_name,
role_arn,
run_left_normalization,
status,
update_time
FROM aws.omics.variant_import_jobs
WHERE region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;