Class: Aws::Budgets::Types::CalculatedSpend

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-budgets/types.rb

Overview

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`.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#actual_spendTypes::Spend

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

Returns:



433
434
435
436
437
438
# File 'lib/aws-sdk-budgets/types.rb', line 433

class CalculatedSpend < Struct.new(
  :actual_spend,
  :forecasted_spend)
  SENSITIVE = []
  include Aws::Structure
end

#forecasted_spendTypes::Spend

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

Returns:



433
434
435
436
437
438
# File 'lib/aws-sdk-budgets/types.rb', line 433

class CalculatedSpend < Struct.new(
  :actual_spend,
  :forecasted_spend)
  SENSITIVE = []
  include Aws::Structure
end