package aws-route53

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. i_p_address : Aws.BaseTypes.String.t option;
  2. port : Aws.BaseTypes.Integer.t option;
  3. type_ : HealthCheckType.t;
  4. resource_path : Aws.BaseTypes.String.t option;
  5. fully_qualified_domain_name : Aws.BaseTypes.String.t option;
  6. search_string : Aws.BaseTypes.String.t option;
  7. request_interval : Aws.BaseTypes.Integer.t option;
  8. failure_threshold : Aws.BaseTypes.Integer.t option;
  9. measure_latency : Aws.BaseTypes.Boolean.t option;
  10. inverted : Aws.BaseTypes.Boolean.t option;
  11. disabled : Aws.BaseTypes.Boolean.t option;
  12. health_threshold : Aws.BaseTypes.Integer.t option;
  13. child_health_checks : ChildHealthCheckList.t;
  14. enable_s_n_i : Aws.BaseTypes.Boolean.t option;
  15. regions : HealthCheckRegionList.t;
  16. alarm_identifier : AlarmIdentifier.t option;
  17. 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