Module Values.QueryParametersSource

Defines the data retrieval parameters for a widget.

Sourcetype nonrec t = {
  1. costAndUsage : CostAndUsageQuery.t option;
    (*

    The parameters for querying cost and usage data, including metrics, time range, granularity, grouping dimensions, and filters.

    *)
  2. savingsPlansCoverage : SavingsPlansCoverageQuery.t option;
    (*

    The parameters for querying Savings Plans coverage data, showing how much of your eligible compute usage is covered by Savings Plans.

    *)
  3. savingsPlansUtilization : SavingsPlansUtilizationQuery.t option;
    (*

    The parameters for querying Savings Plans utilization data, showing how effectively your Savings Plans are being used.

    *)
  4. reservationCoverage : ReservationCoverageQuery.t option;
    (*

    The parameters for querying Reserved Instance coverage data, showing how much of your eligible instance usage is covered by Reserved Instances.

    *)
  5. reservationUtilization : ReservationUtilizationQuery.t option;
    (*

    The parameters for querying Reserved Instance utilization data, showing how effectively your Reserved Instances are being used.

    *)
}
Sourceval make : ?costAndUsage:??? -> ?savingsPlansCoverage:??? -> ?savingsPlansUtilization:??? -> ?reservationCoverage:??? -> ?reservationUtilization:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * Awso.Botodata.value) 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