Module Values.InstanceStatusSource

The instance status details.

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

    The current state of the instance.

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

    The details of the status change reason for the instance.

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

    The timeline of the instance 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