Module Values.BatchGetCollectionRequestSource

Returns attributes for one or more collections, including the collection endpoint, the OpenSearch Dashboards endpoint, and FIPS-compliant endpoints. For more information, see Creating and managing Amazon OpenSearch Serverless collections.

Sourcetype nonrec t = {
  1. ids : CollectionIds.t option;
    (*

    A list of collection IDs. You can't provide names and IDs in the same request. The ID is part of the collection endpoint. You can also retrieve it using the ListCollections API.

    *)
  2. names : CollectionNames.t option;
    (*

    A list of collection names. You can't provide names and IDs in the same request.

    *)
}
Sourceval make : ?ids:??? -> ?names:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of CollectionId.t ] 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