Module Values.ScalingConfigurationOutputSource

The scaling configuration output of a compute fleet.

Sourcetype nonrec t = {
  1. scalingType : FleetScalingType.t option;
    (*

    The scaling type for a compute fleet.

    *)
  2. targetTrackingScalingConfigs : TargetTrackingScalingConfigurations.t option;
    (*

    A list of TargetTrackingScalingConfiguration objects.

    *)
  3. maxCapacity : FleetCapacity.t option;
    (*

    The maximum number of instances in the fleet when auto-scaling.

    *)
  4. desiredCapacity : FleetCapacity.t option;
    (*

    The desired number of instances in the fleet when auto-scaling.

    *)
}
Sourceval make : ?scalingType:??? -> ?targetTrackingScalingConfigs:??? -> ?maxCapacity:??? -> ?desiredCapacity:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Integer of FleetCapacity.t | `List of [> `Structure of (string * [> `Double of WrapperDouble.t | `Enum of string ]) list ] 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