read_set_upload_parts
Creates, updates, deletes, gets or lists a read_set_upload_parts resource.
Overview
| Name | read_set_upload_parts |
| Type | Resource |
| Id | aws.omics.read_set_upload_parts |
Fields
The following fields are returned by SELECT queries:
- list_read_set_upload_parts
| Name | Datatype | Description |
|---|---|---|
checksum | string | A unique identifier used to confirm that parts are being added to the correct upload. |
creation_time | string (date-time) | The time stamp for when a direct upload was created. |
last_updated_time | string (date-time) | The time stamp for the most recent update to an uploaded part. |
part_number | integer | The number identifying the part in an upload. |
part_size | integer (int64) | The size of the the part in an upload. |
part_source | string | The origin of the part being direct uploaded. (SOURCE1, SOURCE2) |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
list_read_set_upload_parts | select | sequence_store_id, upload_id, region | maxResults, nextToken | Lists 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.
| Name | Datatype | Description |
|---|---|---|
region | string | AWS region (default: us-east-1) |
sequence_store_id | string | The Sequence Store ID used for the multipart uploads. |
upload_id | string | The ID for the initiated multipart upload. |
maxResults | integer | The maximum number of read set upload parts returned in a page. |
nextToken | string | Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results. |
SELECT examples
- list_read_set_upload_parts
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 }}'
;