Module Values.DeleteCollectionDetailSource

Details about a deleted OpenSearch Serverless collection.

Sourcetype nonrec t = {
  1. id : CollectionId.t option;
    (*

    The unique identifier of the collection.

    *)
  2. name : CollectionName.t option;
    (*

    The name of the collection.

    *)
  3. status : CollectionStatus.t option;
    (*

    The current status of the collection.

    *)
}
Sourceval make : ?id:??? -> ?name:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of CollectionId.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