Skip to main content

variant_import_jobs

Creates, updates, deletes, gets or lists a variant_import_jobs resource.

Overview

Namevariant_import_jobs
TypeResource
Idaws.omics.variant_import_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe 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_fieldsobjectThe annotation schema generated by the parsed annotation data.
completion_timestring (date-time)When the job completed.
creation_timestring (date-time)When the job was created.
destination_namestringThe job's destination variant store. (pattern: <code>([a-z]){1}([a-z0-9_]){2,254}</code>)
items_arrayThe job's items.
role_arnstringThe job's service role ARN. (pattern: <code>arn:([^: ]):([^: ]):([^: ]):([0-9]{12}):([^: ])</code>)
run_left_normalizationbooleanThe job's left normalization setting.
statusstringThe job's status. (SUBMITTED, IN_PROGRESS, CANCELLED, COMPLETED, FAILED, COMPLETED_WITH_FAILURES)
status_messagestringThe job's status message.
update_timestring (date-time)When the job was updated.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_variant_import_jobselectjob_id, regionAmazon 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_jobsselectregionmaxResults, nextTokenAmazon 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.

NameDatatypeDescription
job_idstringThe job's ID.
regionstringAWS region (default: us-east-1)
maxResultsintegerThe maximum number of import jobs to return in one page of results.
nextTokenstringSpecify the pagination token from a previous request to retrieve the next page of results.

SELECT examples

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
;