Module Values.StatusReportSource

A complex type that contains the status that one Amazon Route 53 health checker reports and the time of the health check.

Sourcetype nonrec t = {
  1. status : Status.t option;
    (*

    A description of the status of the health check endpoint as reported by one of the Amazon Route 53 health checkers.

    *)
  2. checkedTime : TimeStamp.t option;
    (*

    The date and time that the health checker performed the health check in ISO 8601 format and Coordinated Universal Time (UTC). For example, the value 2017-03-27T17:48:16.751Z represents March 27, 2017 at 17:48:16.751 UTC.

    *)
}
Sourceval make : ?status:??? -> ?checkedTime:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of Status.t | `Timestamp of TimeStamp.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