Module Values.CostComparisonDriverSource

Represents a collection of cost drivers and their associated metrics for cost comparison analysis.

Sourcetype nonrec t = {
  1. costSelector : Expression.t option;
  2. metrics : ComparisonMetrics.t option;
    (*

    A mapping of metric names to their comparison values.

    *)
  3. costDrivers : CostDrivers.t option;
    (*

    An array of cost drivers, each representing a cost difference between the baseline and comparison time periods. Each entry also includes a metric delta (for example, usage change) that contributed to the cost variance, along with the identifier and type of change.

    *)
}
Sourceval make : ?costSelector:??? -> ?metrics:??? -> ?costDrivers:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * Awso.Botodata.value) 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