Module Values_0.TargetHealthSource

Information about the connection health of an RDS Proxy target.

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

    The current state of the connection health lifecycle for the RDS Proxy target. The following is a typical lifecycle example for the states of an RDS Proxy target: registering > unavailable > available > unavailable > available

    *)
  2. reason : TargetHealthReason.t option;
    (*

    The reason for the current health State of the RDS Proxy target.

    *)
  3. description : String_.t option;
    (*

    A description of the health of the RDS Proxy target. If the State is AVAILABLE, a description is not included.

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