Module Values.SavingsPlansCoverageDataSource

Specific coverage percentage, On-Demand costs, and spend covered by Savings Plans, and total Savings Plans costs for an account.

Sourcetype nonrec t = {
  1. spendCoveredBySavingsPlans : GenericString.t option;
    (*

    The amount of your Amazon Web Services usage that's covered by a Savings Plans.

    *)
  2. onDemandCost : GenericString.t option;
    (*

    The cost of your Amazon Web Services usage at the public On-Demand rate.

    *)
  3. totalCost : GenericString.t option;
    (*

    The total cost of your Amazon Web Services usage, regardless of your purchase option.

    *)
  4. coveragePercentage : GenericString.t option;
    (*

    The percentage of your existing Savings Plans covered usage, divided by all of your eligible Savings Plans usage in an account (or set of accounts).

    *)
}
Sourceval make : ?spendCoveredBySavingsPlans:??? -> ?onDemandCost:??? -> ?totalCost:??? -> ?coveragePercentage:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of GenericString.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