package aws-route53

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