Values.CreateCollectionGroupRequestSourceCreates 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.
type nonrec t = {name : CollectionGroupName.t;The name of the collection group.
*)standbyReplicas : StandbyReplicas.t;Indicates whether standby replicas should be used for a collection group.
*)description : CreateCollectionGroupRequestDescriptionString.t option;A description of the collection group.
*)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.
*)clientToken : ClientToken.t option;Unique, case-sensitive identifier to ensure idempotency of the request.
*)}val make :
?description:??? ->
?tags:??? ->
?capacityLimits:??? ->
?clientToken:??? ->
name:CollectionGroupName.t ->
standbyReplicas:StandbyReplicas.t ->
unit ->
tval 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 ]