Module Values.CalculatedSpendSource

The spend objects that are associated with this budget. The actualSpend tracks how much you've used, cost, usage, RI units, or Savings Plans units and the forecastedSpend tracks how much that you're predicted to spend based on your historical usage profile. For example, if it's the 20th of the month and you have spent 50 dollars on Amazon EC2, your actualSpend is 50 USD, and your forecastedSpend is 75 USD.

Sourcetype nonrec t = {
  1. actualSpend : Spend.t;
    (*

    The amount of cost, usage, RI units, or Savings Plans units that you used.

    *)
  2. forecastedSpend : Spend.t option;
    (*

    The amount of cost, usage, RI units, or Savings Plans units that you're forecasted to use.

    *)
}
Sourceval context_ : string
Sourceval make : ?forecastedSpend:??? -> actualSpend:Spend.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of NumericValue.t ]) 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