Module Values.HealthCheckObservationSource

A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker.

Sourcetype nonrec t = {
  1. region : HealthCheckRegion.t option;
    (*

    The region of the Amazon Route 53 health checker that provided the status in StatusReport.

    *)
  2. iPAddress : IPAddress.t option;
    (*

    The IP address of the Amazon Route 53 health checker that provided the failure reason in StatusReport.

    *)
  3. statusReport : StatusReport.t option;
    (*

    A complex type that contains the last failure reason as reported by one Amazon Route 53 health checker and the time of the failed health check.

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