Module Types.HealthCheck

type t = {
target : Aws.BaseTypes.String.t;
interval : Aws.BaseTypes.Integer.t;
timeout : Aws.BaseTypes.Integer.t;
unhealthy_threshold : Aws.BaseTypes.Integer.t;
healthy_threshold : Aws.BaseTypes.Integer.t;
}
val make : target:Aws.BaseTypes.String.t -> interval:Aws.BaseTypes.Integer.t -> timeout:Aws.BaseTypes.Integer.t -> unhealthy_threshold:Aws.BaseTypes.Integer.t -> healthy_threshold:Aws.BaseTypes.Integer.t -> unit -> t
val parse : Ezxmlm.nodes -> t option
val to_query : t -> Aws.Query.t
val to_json : t -> [> `Assoc of (string * Aws.Json.t) list ]
val of_json : Aws.Json.t -> t