Module Values.CopyPartResultSource

Container for all response elements.

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

    Entity tag of the object.

    *)
  2. lastModified : LastModified.t option;
    (*

    Date and time at which the object was uploaded.

    *)
  3. 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.

    *)
  4. 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.

    *)
  5. 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.

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

    The Base64 encoded, 160-bit SHA1 digest 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.

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

    The Base64 encoded, 256-bit SHA256 digest 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.

    *)
  8. 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.

    *)
  9. 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.

    *)
  10. 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.

    *)
  11. 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.

    *)
  12. 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.

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