Module Types.HealthCheckConfig

type t = {
i_p_address : Aws.BaseTypes.String.t option;
port : Aws.BaseTypes.Integer.t option;
type_ : HealthCheckType.t;
resource_path : Aws.BaseTypes.String.t option;
fully_qualified_domain_name : Aws.BaseTypes.String.t option;
search_string : Aws.BaseTypes.String.t option;
request_interval : Aws.BaseTypes.Integer.t option;
failure_threshold : Aws.BaseTypes.Integer.t option;
measure_latency : Aws.BaseTypes.Boolean.t option;
inverted : Aws.BaseTypes.Boolean.t option;
disabled : Aws.BaseTypes.Boolean.t option;
health_threshold : Aws.BaseTypes.Integer.t option;
child_health_checks : ChildHealthCheckList.t;
enable_s_n_i : Aws.BaseTypes.Boolean.t option;
regions : HealthCheckRegionList.t;
alarm_identifier : AlarmIdentifier.t option;
insufficient_data_health_status : InsufficientDataHealthStatus.t option;
}
val make : ?⁠i_p_address:Aws.BaseTypes.String.t -> ?⁠port:Aws.BaseTypes.Integer.t -> type_:HealthCheckType.t -> ?⁠resource_path:Aws.BaseTypes.String.t -> ?⁠fully_qualified_domain_name:Aws.BaseTypes.String.t -> ?⁠search_string:Aws.BaseTypes.String.t -> ?⁠request_interval:Aws.BaseTypes.Integer.t -> ?⁠failure_threshold:Aws.BaseTypes.Integer.t -> ?⁠measure_latency:Aws.BaseTypes.Boolean.t -> ?⁠inverted:Aws.BaseTypes.Boolean.t -> ?⁠disabled:Aws.BaseTypes.Boolean.t -> ?⁠health_threshold:Aws.BaseTypes.Integer.t -> ?⁠child_health_checks:ChildHealthCheckList.t -> ?⁠enable_s_n_i:Aws.BaseTypes.Boolean.t -> ?⁠regions:HealthCheckRegionList.t -> ?⁠alarm_identifier:AlarmIdentifier.t -> ?⁠insufficient_data_health_status:InsufficientDataHealthStatus.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