Module Values_0.InstanceGroupScalingMetadataSource

Metadata information about scaling operations for an instance group.

Sourcetype nonrec t = {
  1. instanceCount : InstanceCount.t option;
    (*

    The current number of instances in the group.

    *)
  2. targetCount : TargetCount.t option;
    (*

    The desired number of instances for the group after scaling.

    *)
  3. minCount : InstanceCount.t option;
    (*

    Minimum instance count of the instance group.

    *)
  4. failureMessage : String_.t option;
    (*

    An error message describing why the scaling operation failed, if applicable.

    *)
}
Sourceval make : ?instanceCount:??? -> ?targetCount:??? -> ?minCount:??? -> ?failureMessage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of InstanceCount.t | `String of String_.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