Module Values.ReservationCoverageQuerySource

Defines the parameters for querying Reserved Instance coverage data, including grouping options, metrics, and sorting preferences.

Sourcetype nonrec t = {
  1. timeRange : DateTimeRange.t;
  2. groupBy : GroupDefinitions.t option;
    (*

    Specifies how to group the Reserved Instance coverage data, such as by service, Region, or instance type.

    *)
  3. granularity : Granularity.t option;
    (*

    The time granularity of the retrieved data: HOURLY, DAILY, or MONTHLY.

    *)
  4. filter : Expression.t option;
  5. metrics : MetricNames.t option;
    (*

    The coverage metrics to include in the results. Valid values for ReservationCoverageQuery metrics are Hour, Unit, and Cost.

    *)
}
Sourceval context_ : string
Sourceval make : ?groupBy:??? -> ?granularity:??? -> ?filter:??? -> ?metrics:??? -> timeRange:DateTimeRange.t -> 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