Module Values.BatchGetCollectionGroupRequestSource

Returns attributes for one or more collection groups, including capacity limits and the number of collections in each group. For more information, see Creating and managing Amazon OpenSearch Serverless collections.

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

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

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

    A list of collection group 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 CollectionGroupId.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