Module Values.UpdateCollectionGroupRequestSource

Updates the description and capacity limits of a collection group.

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

    The unique identifier of the collection group to update.

    *)
  2. description : UpdateCollectionGroupRequestDescriptionString.t option;
    (*

    A new description for the collection group.

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

    Updated capacity limits for the collection group, in OpenSearch Compute Units (OCUs).

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

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

    *)
}
Sourceval context_ : string
Sourceval make : ?description:??? -> ?capacityLimits:??? -> ?clientToken:??? -> id:CollectionGroupId.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of CollectionGroupId.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