Values.DatapointSourceEncapsulates the statistical data that CloudWatch computes from metric data.
type nonrec t = {timestamp : Timestamp.t option;The time stamp used for the data point.
*)sampleCount : DatapointValue.t option;The number of metric values that contributed to the aggregate value of this data point.
*)average : DatapointValue.t option;The average of the metric values that correspond to the data point.
*)sum : DatapointValue.t option;The sum of the metric values for the data point.
*)minimum : DatapointValue.t option;The minimum metric value for the data point.
*)maximum : DatapointValue.t option;The maximum metric value for the data point.
*)unit : StandardUnit.t option;The standard unit for the data point.
*)extendedStatistics : DatapointValueMap.t option;The percentile statistic for the data point.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Double of DatapointValue.t
| `Enum of string
| `Map of
([> `String of ExtendedStatistic.t ]
* [> `Double of DatapointValue.t ])
list
| `Timestamp of Timestamp.t ])
list ]