package aws-cloudwatch

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. metric : Metric.t;
  2. period : Aws.BaseTypes.Integer.t;
  3. stat : Aws.BaseTypes.String.t;
  4. unit : StandardUnit.t option;
}
val make : metric:Metric.t -> period:Aws.BaseTypes.Integer.t -> stat:Aws.BaseTypes.String.t -> ?unit:StandardUnit.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