Module Values.DeletedObjectSource

Information about the deleted object.

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

    The name of the deleted object.

    *)
  2. versionId : ObjectVersionId.t option;
    (*

    The version ID of the deleted object. This functionality is not supported for directory buckets.

    *)
  3. deleteMarker : DeleteMarker.t option;
    (*

    Indicates whether the specified object version that was permanently deleted was (true) or was not (false) a delete marker before deletion. In a simple DELETE, this header indicates whether (true) or not (false) the current version of the object is a delete marker. To learn more about delete markers, see Working with delete markers. This functionality is not supported for directory buckets.

    *)
  4. deleteMarkerVersionId : DeleteMarkerVersionId.t option;
    (*

    The version ID of the delete marker created as a result of the DELETE operation. If you delete a specific object version, the value returned by this header is the version ID of the object version deleted. This functionality is not supported for directory buckets.

    *)
}
Sourceval make : ?key:??? -> ?versionId:??? -> ?deleteMarker:??? -> ?deleteMarkerVersionId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of DeleteMarker.t | `String of ObjectKey.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