Module Values.CapacityLimitsSource

The maximum capacity limits for all OpenSearch Serverless collections, in OpenSearch Compute Units (OCUs). These limits are used to scale your collections based on the current workload. For more information, see Managing capacity limits for Amazon OpenSearch Serverless.

Sourcetype nonrec t = {
  1. maxIndexingCapacityInOCU : IndexingCapacityValue.t option;
    (*

    The maximum indexing capacity for collections.

    *)
  2. maxSearchCapacityInOCU : SearchCapacityValue.t option;
    (*

    The maximum search capacity for collections.

    *)
}
Sourceval make : ?maxIndexingCapacityInOCU:??? -> ?maxSearchCapacityInOCU:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IndexingCapacityValue.t ]) 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