Module Values.InstanceGroupStatusSource

The details of the instance group status.

Sourcetype nonrec t = {
  1. state : InstanceGroupState.t option;
    (*

    The current state of the instance group.

    *)
  2. stateChangeReason : InstanceGroupStateChangeReason.t option;
    (*

    The status change reason details for the instance group.

    *)
  3. timeline : InstanceGroupTimeline.t option;
    (*

    The timeline of the instance group status over time.

    *)
}
Sourceval make : ?state:??? -> ?stateChangeReason:??? -> ?timeline:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `Enum of string | `String of String_.t | `Timestamp of Date.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