Module Values.ScalingConfigurationSource

Specifies the boundaries of the compute node group auto scaling.

Sourcetype nonrec t = {
  1. minInstanceCount : ScalingConfigurationMinInstanceCountInteger.t option;
    (*

    The lower bound of the number of instances allowed in the compute fleet.

    *)
  2. maxInstanceCount : ScalingConfigurationMaxInstanceCountInteger.t option;
    (*

    The upper bound of the number of instances allowed in the compute fleet.

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