Class: Aws::Budgets::Types::Spend
- Inherits:
-
Struct
- Object
- Struct
- Aws::Budgets::Types::Spend
- Defined in:
- gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb
Overview
The amount of cost or usage that's measured for a budget.
Cost example: A Spend
for 3 USD
of costs has the following
parameters:
An
Amount
of3
A
Unit
ofUSD
Usage example: A Spend
for 3 GB
of S3 usage has the following
parameters:
An
Amount
of3
A
Unit
ofGB
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amount ⇒ String
The cost or usage amount that's associated with a budget forecast, actual spend, or budget threshold.
-
#unit ⇒ String
The unit of measurement that's used for the budget forecast, actual spend, or budget threshold.
Instance Attribute Details
#amount ⇒ String
The cost or usage amount that's associated with a budget forecast, actual spend, or budget threshold.
1702 1703 1704 1705 1706 1707 |
# File 'gems/aws-sdk-budgets/lib/aws-sdk-budgets/types.rb', line 1702 class Spend < Struct.new( :amount, :unit) SENSITIVE = [] include Aws::Structure end |