Module Values.InstanceRefreshProgressDetailsSource

Reports progress on replacing instances in an Auto Scaling group that has a warm pool. This includes separate details for instances in the warm pool and instances in the Auto Scaling group (the live pool).

Sourcetype nonrec t = {
  1. livePoolProgress : InstanceRefreshLivePoolProgress.t option;
    (*

    Reports progress on replacing instances that are in the Auto Scaling group.

    *)
  2. warmPoolProgress : InstanceRefreshWarmPoolProgress.t option;
    (*

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

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