Skip to main content

read_set_upload_parts

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

Overview

Nameread_set_upload_parts
TypeResource
Idaws.omics.read_set_upload_parts

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
checksumstringA unique identifier used to confirm that parts are being added to the correct upload.
creation_timestring (date-time)The time stamp for when a direct upload was created.
last_updated_timestring (date-time)The time stamp for the most recent update to an uploaded part.
part_numberintegerThe number identifying the part in an upload.
part_sizeinteger (int64)The size of the the part in an upload.
part_sourcestringThe origin of the part being direct uploaded. (SOURCE1, SOURCE2)

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
list_read_set_upload_partsselectsequence_store_id, upload_id, regionmaxResults, nextTokenLists all parts in a multipart read set upload for a sequence store and returns the metadata in a JSON formatted output.

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
regionstringAWS region (default: us-east-1)
sequence_store_idstringThe Sequence Store ID used for the multipart uploads.
upload_idstringThe ID for the initiated multipart upload.
maxResultsintegerThe maximum number of read set upload parts returned in a page.
nextTokenstringNext token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.

SELECT examples

Lists all parts in a multipart read set upload for a sequence store and returns the metadata in a JSON formatted output.

SELECT
checksum,
creation_time,
last_updated_time,
part_number,
part_size,
part_source
FROM aws.omics.read_set_upload_parts
WHERE sequence_store_id = '{{ sequence_store_id }}' -- required
AND upload_id = '{{ upload_id }}' -- required
AND region = '{{ region }}' -- required
AND maxResults = '{{ maxResults }}'
AND nextToken = '{{ nextToken }}'
;