Module Values.DeleteSource

Container for the objects to delete.

Sourcetype nonrec t = {
  1. objects : ObjectIdentifierList.t;
    (*

    The object to delete. Directory buckets - For directory buckets, an object that's composed entirely of whitespace characters is not supported by the DeleteObjects API operation. The request will receive a 400 Bad Request error and none of the objects in the request will be deleted.

    *)
  2. quiet : Quiet.t option;
    (*

    Element to enable quiet mode for the request. When you add this element, you must set its value to true.

    *)
}
Sourceval make : ?quiet:??? -> objects:ObjectIdentifierList.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Quiet.t | `List of [> `Structure of (string * [> `Long of Size.t | `String of ObjectKey.t | `Timestamp of LastModifiedTime.t ]) list ] list ]) 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