Skip to main content

read_set_export_jobs

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

Overview

Nameread_set_export_jobs
TypeResource
Idaws.omics.read_set_export_jobs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
idstringThe job's ID. (pattern: <code>[0-9]+</code>)
completion_timestring (date-time)When the job completed.
creation_timestring (date-time)When the job was created.
destinationstringThe job's destination in Amazon S3. (pattern: <code>s3:​//([a-z0-9][a-z0-9-.]{1,61}[a-z0-9])/?((.{1,1024})/)?</code>)
read_setsarrayThe job's read sets.
sequence_store_idstringThe job's sequence store ID. (pattern: <code>[0-9]+</code>)
statusstringThe job's status. (SUBMITTED, IN_PROGRESS, CANCELLING, CANCELLED, FAILED, COMPLETED, COMPLETED_WITH_FAILURES)
status_messagestringThe job's status message. (pattern: <code>[\p{L}||\p{M}||\p{Z}||\p{S}||\p{N}||\p{P}]+</code>)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_read_set_export_jobselectsequence_store_id, id, regionRetrieves status information about a read set export job and returns the data in JSON format. Use this operation to actively monitor the progress of an export job.
list_read_set_export_jobsselectsequence_store_id, regionmaxResults, nextTokenRetrieves a list of read set export jobs in a JSON formatted response. This API operation is used to check the status of a read set export job initiated by the StartReadSetExportJob API operation.

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
idstringThe job's ID.
regionstringAWS region (default: us-east-1)
sequence_store_idstringThe jobs' sequence store ID.
maxResultsintegerThe maximum number of 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

Retrieves status information about a read set export job and returns the data in JSON format. Use this operation to actively monitor the progress of an export job.

SELECT
id,
completion_time,
creation_time,
destination,
read_sets,
sequence_store_id,
status,
status_message
FROM aws.omics.read_set_export_jobs
WHERE sequence_store_id = '{{ sequence_store_id }}' -- required
AND id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;