Module Values.ObjectSource

An object consists of data and its descriptive metadata.

Sourcetype nonrec t = {
  1. key : ObjectKey.t option;
    (*

    The name that you assign to an object. You use the object key to retrieve the object.

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

    Creation date of the object.

    *)
  3. eTag : ETag.t option;
    (*

    The entity tag is a hash of the object. The ETag reflects changes only to the contents of an object, not its metadata. The ETag may or may not be an MD5 digest of the object data. Whether or not it is depends on how the object was created and how it is encrypted as described below: Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management Console, and are encrypted by SSE-S3 or plaintext, have ETags that are an MD5 digest of their object data. Objects created by the PUT Object, POST Object, or Copy operation, or through the Amazon Web Services Management Console, and are encrypted by SSE-C or SSE-KMS, have ETags that are not an MD5 digest of their object data. If an object is created by either the Multipart Upload or Part Copy operation, the ETag is not an MD5 digest, regardless of the method of encryption. If an object is larger than 16 MB, the Amazon Web Services Management Console will upload or copy that object as a Multipart Upload, and therefore the ETag will not be an MD5 digest. Directory buckets - MD5 is not supported by directory buckets.

    *)
  4. checksumAlgorithm : ChecksumAlgorithmList.t option;
    (*

    The algorithm that was used to create a checksum of the object.

    *)
  5. checksumType : ChecksumType.t option;
    (*

    The checksum type that is used to calculate the object’s checksum value. For more information, see Checking object integrity in the Amazon S3 User Guide.

    *)
  6. size : Size.t option;
    (*

    Size in bytes of the object

    *)
  7. storageClass : ObjectStorageClass.t option;
    (*

    The class of storage used to store the object. Directory buckets - Directory buckets only support EXPRESS_ONEZONE (the S3 Express One Zone storage class) in Availability Zones and ONEZONE_IA (the S3 One Zone-Infrequent Access storage class) in Dedicated Local Zones.

    *)
  8. owner : Owner.t option;
    (*

    The owner of the object Directory buckets - The bucket owner is returned as the object owner.

    *)
  9. restoreStatus : RestoreStatus.t option;
    (*

    Specifies the restoration status of an object. Objects in certain storage classes must be restored before they can be retrieved. For more information about these storage classes and how to work with archived objects, see Working with archived objects in the Amazon S3 User Guide. This functionality is not supported for directory buckets. Directory buckets only support EXPRESS_ONEZONE (the S3 Express One Zone storage class) in Availability Zones and ONEZONE_IA (the S3 One Zone-Infrequent Access storage class) in Dedicated Local Zones.

    *)
}
Sourceval make : ?key:??? -> ?lastModified:??? -> ?eTag:??? -> ?checksumAlgorithm:??? -> ?checksumType:??? -> ?size:??? -> ?storageClass:??? -> ?owner:??? -> ?restoreStatus:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Enum of string ] list | `Long of Size.t | `String of ObjectKey.t | `Structure of (string * [> `Boolean of IsRestoreInProgress.t | `String of DisplayName.t | `Timestamp of RestoreExpiryDate.t ]) list | `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