Module Values.UploadReadSetPartRequestSource

Uploads 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.

Sourcetype nonrec t = {
  1. sequenceStoreId : SequenceStoreId.t;
    (*

    The Sequence Store ID used for the multipart upload.

    *)
  2. uploadId : UploadId.t;
    (*

    The ID for the initiated multipart upload.

    *)
  3. partSource : ReadSetPartSource.t;
    (*

    The source file for an upload part.

    *)
  4. partNumber : UploadReadSetPartRequestPartNumberInteger.t;
    (*

    The number of the part being uploaded.

    *)
  5. payload : ReadSetPartStreamingBlob.t;
    (*

    The read set data to upload for a part.

    *)
}
Sourceval context_ : string
Sourceval make : sequenceStoreId:SequenceStoreId.t -> uploadId:UploadId.t -> partSource:ReadSetPartSource.t -> partNumber:UploadReadSetPartRequestPartNumberInteger.t -> payload:ReadSetPartStreamingBlob.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Blob of ReadSetPartStreamingBlob.t | `Enum of string | `Integer of UploadReadSetPartRequestPartNumberInteger.t | `String of SequenceStoreId.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t