Module Values.InstanceRefreshWarmPoolProgressSource

Reports progress on replacing instances that are in the warm pool.

Sourcetype nonrec t = {
  1. percentageComplete : IntPercent.t option;
    (*

    The percentage of instances in the warm pool that have been replaced. For each instance replacement, Amazon EC2 Auto Scaling tracks the instance's health status and warm-up time. When the instance's health status changes to healthy and the specified warm-up time passes, the instance is considered updated and is added to the percentage complete.

    *)
  2. instancesToUpdate : InstancesToUpdate.t option;
    (*

    The number of instances remaining to update.

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