Module Types.HealthCheck

type t = {
id : Aws.BaseTypes.String.t;
caller_reference : Aws.BaseTypes.String.t;
linked_service : LinkedService.t option;
health_check_config : HealthCheckConfig.t;
health_check_version : Aws.BaseTypes.Long.t;
cloud_watch_alarm_configuration : CloudWatchAlarmConfiguration.t option;
}
val make : id:Aws.BaseTypes.String.t -> caller_reference:Aws.BaseTypes.String.t -> ?⁠linked_service:LinkedService.t -> health_check_config:HealthCheckConfig.t -> health_check_version:Aws.BaseTypes.Long.t -> ?⁠cloud_watch_alarm_configuration:CloudWatchAlarmConfiguration.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