Module Values.StatisticSetSource

Internal only. Represents a set of statistics that describe a specific metric. To learn more about the metrics published to Amazon CloudWatch, see Amazon MWAA performance metrics in Amazon CloudWatch.

Sourcetype nonrec t = {
  1. sampleCount : Integer.t option;
    (*

    Internal only. The number of samples used for the statistic set.

    *)
  2. sum : Double.t option;
    (*

    Internal only. The sum of values for the sample set.

    *)
  3. minimum : Double.t option;
    (*

    Internal only. The minimum value of the sample set.

    *)
  4. maximum : Double.t option;
    (*

    Internal only. The maximum value of the sample set.

    *)
}
Sourceval make : ?sampleCount:??? -> ?sum:??? -> ?minimum:??? -> ?maximum:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `Integer of Integer.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