Values.UploadReadSetPartRequestSourceUploads a specific part of a read set into a sequence store. When you a upload a read set part with a part number that already exists, the new part replaces the existing one. This operation returns a JSON formatted response containing a string identifier that is used to confirm that parts are being added to the intended upload. For more information, see Direct upload to a sequence store in the Amazon Web Services HealthOmics User Guide.
type nonrec t = {sequenceStoreId : SequenceStoreId.t;The Sequence Store ID used for the multipart upload.
*)uploadId : UploadId.t;The ID for the initiated multipart upload.
*)partSource : ReadSetPartSource.t;The source file for an upload part.
*)partNumber : UploadReadSetPartRequestPartNumberInteger.t;The number of the part being uploaded.
*)payload : ReadSetPartStreamingBlob.t;The read set data to upload for a part.
*)}val make :
sequenceStoreId:SequenceStoreId.t ->
uploadId:UploadId.t ->
partSource:ReadSetPartSource.t ->
partNumber:UploadReadSetPartRequestPartNumberInteger.t ->
payload:ReadSetPartStreamingBlob.t ->
unit ->
tval of_header_and_body :
((string, SequenceStoreId.t) Awso.Import.List.Assoc.t
* ReadSetPartStreamingBlob.t) ->
tval to_value :
t ->
[> `Structure of
(string
* [> `Blob of ReadSetPartStreamingBlob.t
| `Enum of string
| `Integer of UploadReadSetPartRequestPartNumberInteger.t
| `String of SequenceStoreId.t ])
list ]