package aws-elasticloadbalancing

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. target : Aws.BaseTypes.String.t;
  2. interval : Aws.BaseTypes.Integer.t;
  3. timeout : Aws.BaseTypes.Integer.t;
  4. unhealthy_threshold : Aws.BaseTypes.Integer.t;
  5. 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