Module Values.CreateCollectionGroupRequestSource

Creates a collection group within OpenSearch Serverless. Collection groups let you manage OpenSearch Compute Units (OCUs) at a group level, with multiple collections sharing the group's capacity limits. For more information, see Managing collection groups.

Sourcetype nonrec t = {
  1. name : CollectionGroupName.t;
    (*

    The name of the collection group.

    *)
  2. standbyReplicas : StandbyReplicas.t;
    (*

    Indicates whether standby replicas should be used for a collection group.

    *)
  3. description : CreateCollectionGroupRequestDescriptionString.t option;
    (*

    A description of the collection group.

    *)
  4. tags : Tags.t option;
    (*

    An arbitrary set of tags (key–value pairs) to associate with the OpenSearch Serverless collection group.

    *)
  5. capacityLimits : CollectionGroupCapacityLimits.t option;
    (*

    The capacity limits for the collection group, in OpenSearch Compute Units (OCUs). These limits control the maximum and minimum capacity for collections within the group.

    *)
  6. clientToken : ClientToken.t option;
    (*

    Unique, case-sensitive identifier to ensure idempotency of the request.

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?tags:??? -> ?capacityLimits:??? -> ?clientToken:??? -> name:CollectionGroupName.t -> standbyReplicas:StandbyReplicas.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of TagKey.t ]) list ] list | `String of CollectionGroupName.t | `Structure of (string * [> `Float of CollectionGroupIndexingCapacityValue.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