Module Values.InstanceCountLimitsSource

Limits on the number of instances that can be created in OpenSearch Service for a given instance type.

Sourcetype nonrec t = {
  1. minimumInstanceCount : MinimumInstanceCount.t option;
    (*

    The maximum allowed number of instances.

    *)
  2. maximumInstanceCount : MaximumInstanceCount.t option;
    (*

    The minimum allowed number of instances.

    *)
}
Sourceval make : ?minimumInstanceCount:??? -> ?maximumInstanceCount:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of MinimumInstanceCount.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