Module Values_1.MetricDataSource

The name, value, and date and time of a metric that was emitted to Amazon CloudWatch.

Sourcetype nonrec t = {
  1. metricName : Values_0.MetricName.t option;
    (*

    The name of the metric.

    *)
  2. value : Values_0.Float_.t option;
    (*

    The value of the metric.

    *)
  3. timestamp : Values_0.Timestamp.t option;
    (*

    The date and time that the algorithm emitted the metric.

    *)
}
Sourceval make : ?metricName:??? -> ?value:??? -> ?timestamp:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Float of Values_0.Float_.t | `String of Values_0.MetricName.t | `Timestamp of Values_0.Timestamp.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t