package aws-route53

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. evaluation_periods : Aws.BaseTypes.Integer.t;
  2. threshold : Aws.BaseTypes.Double.t;
  3. comparison_operator : ComparisonOperator.t;
  4. period : Aws.BaseTypes.Integer.t;
  5. metric_name : Aws.BaseTypes.String.t;
  6. namespace : Aws.BaseTypes.String.t;
  7. statistic : Statistic.t;
  8. dimensions : DimensionList.t;
}
val make : evaluation_periods:Aws.BaseTypes.Integer.t -> threshold:Aws.BaseTypes.Double.t -> comparison_operator:ComparisonOperator.t -> period:Aws.BaseTypes.Integer.t -> metric_name:Aws.BaseTypes.String.t -> namespace:Aws.BaseTypes.String.t -> statistic:Statistic.t -> ?dimensions:DimensionList.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