Module Values_0.InstanceStatusDetailsSource

Describes the instance status.

Sourcetype nonrec t = {
  1. impairedSince : DateTime.t option;
    (*

    The time when a status check failed. For an instance that was launched and impaired, this is the time when the instance was launched.

    *)
  2. name : StatusName.t option;
    (*

    The type of instance status.

    *)
  3. status : StatusType.t option;
    (*

    The status.

    *)
}
Sourceval make : ?impairedSince:??? -> ?name:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Timestamp of DateTime.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