Module Values.AdditionalLimitSource

List of limits that are specific to a given instance type.

Sourcetype nonrec t = {
  1. limitName : LimitName.t option;
    (*

    MaximumNumberOfDataNodesSupported - This attribute only applies to master nodes and specifies the maximum number of data nodes of a given instance type a master node can support. MaximumNumberOfDataNodesWithoutMasterNode - This attribute only applies to data nodes and specifies the maximum number of data nodes of a given instance type can exist without a master node governing them.

    *)
  2. limitValues : LimitValueList.t option;
    (*

    The values of the additional instance type limits.

    *)
}
Sourceval make : ?limitName:??? -> ?limitValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `String of LimitValue.t ] list | `String of LimitName.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