Module Values_2.MetricDataResultSource

Contains a single data point from a capacity metrics query, including the dimension values, timestamp, and metric values for that specific combination.

Sourcetype nonrec t = {
  1. dimension : Values_1.CapacityManagerDimension.t option;
    (*

    The dimension values that identify this specific data point, such as account ID, region, and instance family.

    *)
  2. timestamp : Values_0.MillisecondDateTime.t option;
    (*

    The timestamp for this data point, indicating when the capacity usage occurred.

    *)
  3. metricValues : Values_1.MetricValueSet.t option;
    (*

    The metric values and statistics for this data point, containing the actual capacity usage numbers.

    *)
}
Sourceval make : ?dimension:??? -> ?timestamp:??? -> ?metricValues:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Double of float | `Enum of string ]) list ] list | `Structure of (string * [> `Enum of string | `List of [> `Structure of (string * [> `String of string ]) list ] list | `String of Values_0.String_.t | `Timestamp of Values_0.MillisecondDateTime.t ]) list | `Timestamp of Values_0.MillisecondDateTime.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