Values.SavingsPlansCoverageQuerySourceDefines the parameters for querying Savings Plans coverage data, including metrics, grouping options, and time granularity.
type nonrec t = {timeRange : DateTimeRange.t;metrics : MetricNames.t option;The coverage metrics to include in the results. Valid value for SavingsPlansCoverageQuery metrics is SpendCoveredBySavingsPlans.
*)granularity : Granularity.t option;The time granularity of the retrieved data: HOURLY, DAILY, or MONTHLY.
*)groupBy : GroupDefinitions.t option;Specifies how to group the Savings Plans coverage data, such as by service or instance family.
*)filter : Expression.t option;}val make :
?metrics:??? ->
?granularity:??? ->
?groupBy:??? ->
?filter:??? ->
timeRange:DateTimeRange.t ->
unit ->
t