Module Values.DimensionKeyDescriptionSource

An object that includes the requested dimension key values and aggregated metric values within a dimension group.

Sourcetype nonrec t = {
  1. dimensions : DimensionMap.t option;
    (*

    A map of name-value pairs for the dimensions in the group.

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

    The aggregated metric value for the dimensions, over the requested time range.

    *)
  3. additionalMetrics : AdditionalMetricsMap.t option;
    (*

    A map that contains the value for each additional metric.

    *)
  4. partitions : MetricValuesList.t option;
    (*

    If PartitionBy was specified, PartitionKeys contains the dimensions that were.

    *)
}
Sourceval make : ?dimensions:??? -> ?total:??? -> ?additionalMetrics:??? -> ?partitions:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Double of Double.t | `List of [> `Double of Double.t ] list | `Map of ([> `String of RequestString.t ] * [> `Double of Double.t | `String of RequestString.t ]) list ]) 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