package aws-cloudwatch

  1. Overview
  2. Docs
Legend:
Library
Module
Module type
Parameter
Class
Class type
type t = {
  1. metric_name : Aws.BaseTypes.String.t;
  2. dimensions : Dimensions.t;
  3. timestamp : Aws.BaseTypes.DateTime.t option;
  4. value : Aws.BaseTypes.Double.t option;
  5. statistic_values : StatisticSet.t option;
  6. values : Values.t;
  7. counts : Counts.t;
  8. unit : StandardUnit.t option;
  9. storage_resolution : Aws.BaseTypes.Integer.t option;
}
val make : metric_name:Aws.BaseTypes.String.t -> ?dimensions:Dimensions.t -> ?timestamp:Aws.BaseTypes.DateTime.t -> ?value:Aws.BaseTypes.Double.t -> ?statistic_values:StatisticSet.t -> ?values:Values.t -> ?counts:Counts.t -> ?unit:StandardUnit.t -> ?storage_resolution: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