Module Values.CompletedPartSource

Details of the parts that were uploaded.

Sourcetype nonrec t = {
  1. eTag : ETag.t option;
    (*

    Entity tag returned when the part was uploaded.

    *)
  2. checksumCRC32 : ChecksumCRC32.t option;
    (*

    The Base64 encoded, 32-bit CRC32 checksum of the part. This checksum is present if the multipart upload request was created with the CRC32 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  3. checksumCRC32C : ChecksumCRC32C.t option;
    (*

    The Base64 encoded, 32-bit CRC32C checksum of the part. This checksum is present if the multipart upload request was created with the CRC32C checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  4. checksumCRC64NVME : ChecksumCRC64NVME.t option;
    (*

    The Base64 encoded, 64-bit CRC64NVME checksum of the part. This checksum is present if the multipart upload request was created with the CRC64NVME checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  5. checksumSHA1 : ChecksumSHA1.t option;
    (*

    The Base64 encoded, 160-bit SHA1 checksum of the part. This checksum is present if the multipart upload request was created with the SHA1 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  6. checksumSHA256 : ChecksumSHA256.t option;
    (*

    The Base64 encoded, 256-bit SHA256 checksum of the part. This checksum is present if the multipart upload request was created with the SHA256 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  7. checksumSHA512 : ChecksumSHA512.t option;
    (*

    The Base64 encoded, 512-bit SHA512 digest of the part. This checksum is present if the multipart upload request was created with the SHA512 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  8. checksumMD5 : ChecksumMD5.t option;
    (*

    The Base64 encoded, 128-bit MD5 digest of the part. This checksum is present if the multipart upload request was created with the MD5 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  9. checksumXXHASH64 : ChecksumXXHASH64.t option;
    (*

    The Base64 encoded, 64-bit XXHASH64 checksum of the part. This checksum is present if the multipart upload request was created with the XXHASH64 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  10. checksumXXHASH3 : ChecksumXXHASH3.t option;
    (*

    The Base64 encoded, 64-bit XXHASH3 checksum of the part. This checksum is present if the multipart upload request was created with the XXHASH3 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  11. checksumXXHASH128 : ChecksumXXHASH128.t option;
    (*

    The Base64 encoded, 128-bit XXHASH128 checksum of the part. This checksum is present if the multipart upload request was created with the XXHASH128 checksum algorithm. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  12. partNumber : PartNumber.t option;
    (*

    Part number that identifies the part. This is a positive integer between 1 and 10,000. General purpose buckets - In CompleteMultipartUpload, when a additional checksum (including x-amz-checksum-crc32, x-amz-checksum-crc32c, x-amz-checksum-sha1, or x-amz-checksum-sha256) is applied to each part, the PartNumber must start at 1 and the part numbers must be consecutive. Otherwise, Amazon S3 generates an HTTP 400 Bad Request status code and an InvalidPartOrder error code. Directory buckets - In CompleteMultipartUpload, the PartNumber must start at 1 and the part numbers must be consecutive.

    *)
}
Sourceval make : ?eTag:??? -> ?checksumCRC32:??? -> ?checksumCRC32C:??? -> ?checksumCRC64NVME:??? -> ?checksumSHA1:??? -> ?checksumSHA256:??? -> ?checksumSHA512:??? -> ?checksumMD5:??? -> ?checksumXXHASH64:??? -> ?checksumXXHASH3:??? -> ?checksumXXHASH128:??? -> ?partNumber:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of PartNumber.t | `String of ETag.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