Class: Aws::CostExplorer::Types::ComparisonMetricValue
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::ComparisonMetricValue
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-costexplorer/types.rb
Overview
Contains cost or usage metric values for comparing two time periods. Each value includes amounts for the baseline and comparison time periods, their difference, and the unit of measurement.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#baseline_time_period_amount ⇒ String
The numeric value for the baseline time period measurement.
-
#comparison_time_period_amount ⇒ String
The numeric value for the comparison time period measurement.
-
#difference ⇒ String
The calculated difference between ‘ComparisonTimePeriodAmount` and `BaselineTimePeriodAmount`.
-
#unit ⇒ String
The unit of measurement applicable to all numeric values in this comparison.
Instance Attribute Details
#baseline_time_period_amount ⇒ String
The numeric value for the baseline time period measurement.
503 504 505 506 507 508 509 510 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 503 class ComparisonMetricValue < Struct.new( :baseline_time_period_amount, :comparison_time_period_amount, :difference, :unit) SENSITIVE = [] include Aws::Structure end |
#comparison_time_period_amount ⇒ String
The numeric value for the comparison time period measurement.
503 504 505 506 507 508 509 510 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 503 class ComparisonMetricValue < Struct.new( :baseline_time_period_amount, :comparison_time_period_amount, :difference, :unit) SENSITIVE = [] include Aws::Structure end |
#difference ⇒ String
The calculated difference between ‘ComparisonTimePeriodAmount` and `BaselineTimePeriodAmount`.
503 504 505 506 507 508 509 510 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 503 class ComparisonMetricValue < Struct.new( :baseline_time_period_amount, :comparison_time_period_amount, :difference, :unit) SENSITIVE = [] include Aws::Structure end |
#unit ⇒ String
The unit of measurement applicable to all numeric values in this comparison.
503 504 505 506 507 508 509 510 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 503 class ComparisonMetricValue < Struct.new( :baseline_time_period_amount, :comparison_time_period_amount, :difference, :unit) SENSITIVE = [] include Aws::Structure end |