Module Values.TargetHealthDescriptionSource

Information about the health of a target.

Sourcetype nonrec t = {
  1. target : TargetDescription.t option;
    (*

    The description of the target.

    *)
  2. healthCheckPort : HealthCheckPort.t option;
    (*

    The port to use to connect with the target.

    *)
  3. targetHealth : TargetHealth.t option;
    (*

    The health information for the target.

    *)
  4. anomalyDetection : AnomalyDetection.t option;
    (*

    The anomaly detection result for the target. If no anomalies were detected, the result is normal. If anomalies were detected, the result is anomalous.

    *)
  5. administrativeOverride : AdministrativeOverride.t option;
    (*

    The administrative override information for the target.

    *)
}
Sourceval make : ?target:??? -> ?healthCheckPort:??? -> ?targetHealth:??? -> ?anomalyDetection:??? -> ?administrativeOverride:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of HealthCheckPort.t | `Structure of (string * [> `Enum of string | `Integer of Port.t | `String of TargetId.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