Module Values.RollbackDetailsSource

Details about an instance refresh rollback.

Sourcetype nonrec t = {
  1. rollbackReason : XmlStringMaxLen1023.t option;
    (*

    The reason for this instance refresh rollback (for example, whether a manual or automatic rollback was initiated).

    *)
  2. rollbackStartTime : TimestampType.t option;
    (*

    The date and time at which the rollback began.

    *)
  3. percentageCompleteOnRollback : IntPercent.t option;
    (*

    Indicates the value of PercentageComplete at the time the rollback started.

    *)
  4. instancesToUpdateOnRollback : InstancesToUpdate.t option;
    (*

    Indicates the value of InstancesToUpdate at the time the rollback started.

    *)
  5. progressDetailsOnRollback : InstanceRefreshProgressDetails.t option;
    (*

    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).

    *)
}
Sourceval make : ?rollbackReason:??? -> ?rollbackStartTime:??? -> ?percentageCompleteOnRollback:??? -> ?instancesToUpdateOnRollback:??? -> ?progressDetailsOnRollback:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Integer of IntPercent.t | `String of XmlStringMaxLen1023.t | `Structure of (string * [> `Structure of (string * [> `Integer of IntPercent.t ]) list ]) list | `Timestamp of TimestampType.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