Skip to main content

annotation_import_jobs

Creates, updates, deletes, gets or lists an annotation_import_jobs resource.

Overview

Nameannotation_import_jobs
TypeResource
Idaws.omics.annotation_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 annotation store. (pattern: <code>([a-z]){1}([a-z0-9_]){2,254}</code>)
format_optionsobjectFormatting options for a file.
items_arrayThe job's imported 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.
version_namestringThe name of the annotation store version. (pattern: <code>([a-z]){1}([a-z0-9_]){2,254}</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_annotation_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 an annotation import job.
list_annotation_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 annotation 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 jobs to return in one page of results.
nextTokenstringSpecifies 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 an annotation import job.

SELECT
id,
annotation_fields,
completion_time,
creation_time,
destination_name,
format_options,
items_,
role_arn,
run_left_normalization,
status,
status_message,
update_time,
version_name
FROM aws.omics.annotation_import_jobs
WHERE job_id = '{{ job_id }}' -- required
AND region = '{{ region }}' -- required
;