List Read Set Upload Parts
omics_list_read_set_upload_parts | R Documentation |
This operation will list all parts in a requested multipart upload for a sequence store¶
Description¶
This operation will list all parts in a requested multipart upload for a sequence store.
Usage¶
omics_list_read_set_upload_parts(sequenceStoreId, uploadId, partSource,
maxResults, nextToken, filter)
Arguments¶
sequenceStoreId
[required] The Sequence Store ID used for the multipart uploads.
uploadId
[required] The ID for the initiated multipart upload.
partSource
[required] The source file for the upload part.
maxResults
The maximum number of read set upload parts returned in a page.
nextToken
Next token returned in the response of a previous ListReadSetUploadPartsRequest call. Used to get the next page of results.
filter
Attributes used to filter for a specific subset of read set part uploads.
Value¶
A list with the following syntax:
list(
nextToken = "string",
parts = list(
list(
partNumber = 123,
partSize = 123,
partSource = "SOURCE1"|"SOURCE2",
checksum = "string",
creationTime = as.POSIXct(
"2015-01-01"
),
lastUpdatedTime = as.POSIXct(
"2015-01-01"
)
)
)
)