Module Types.CloudWatchAlarmConfiguration

type t = {
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;
}
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