Class: Aws::CostExplorer::Types::Impact
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::Impact
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-costexplorer/types.rb
Overview
The dollar value of the anomaly.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#max_impact ⇒ Float
The maximum dollar value that’s observed for an anomaly.
-
#total_actual_spend ⇒ Float
The cumulative dollar amount that was actually spent during the anomaly.
-
#total_expected_spend ⇒ Float
The cumulative dollar amount that was expected to be spent during the anomaly.
-
#total_impact ⇒ Float
The cumulative dollar difference between the total actual spend and total expected spend.
-
#total_impact_percentage ⇒ Float
The cumulative percentage difference between the total actual spend and total expected spend.
Instance Attribute Details
#max_impact ⇒ Float
The maximum dollar value that’s observed for an anomaly.
4730 4731 4732 4733 4734 4735 4736 4737 4738 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 4730 class Impact < Struct.new( :max_impact, :total_impact, :total_actual_spend, :total_expected_spend, :total_impact_percentage) SENSITIVE = [] include Aws::Structure end |
#total_actual_spend ⇒ Float
The cumulative dollar amount that was actually spent during the anomaly.
4730 4731 4732 4733 4734 4735 4736 4737 4738 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 4730 class Impact < Struct.new( :max_impact, :total_impact, :total_actual_spend, :total_expected_spend, :total_impact_percentage) SENSITIVE = [] include Aws::Structure end |
#total_expected_spend ⇒ Float
The cumulative dollar amount that was expected to be spent during the anomaly. It is calculated using advanced machine learning models to determine the typical spending pattern based on historical data for a customer.
4730 4731 4732 4733 4734 4735 4736 4737 4738 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 4730 class Impact < Struct.new( :max_impact, :total_impact, :total_actual_spend, :total_expected_spend, :total_impact_percentage) SENSITIVE = [] include Aws::Structure end |
#total_impact ⇒ Float
The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as ‘TotalActualSpend - TotalExpectedSpend`.
4730 4731 4732 4733 4734 4735 4736 4737 4738 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 4730 class Impact < Struct.new( :max_impact, :total_impact, :total_actual_spend, :total_expected_spend, :total_impact_percentage) SENSITIVE = [] include Aws::Structure end |
#total_impact_percentage ⇒ Float
The cumulative percentage difference between the total actual spend and total expected spend. It is calculated as ‘(TotalImpact / TotalExpectedSpend) * 100`. When `TotalExpectedSpend` is zero, this field is omitted. Expected spend can be zero in situations such as when you start to use a service for the first time.
4730 4731 4732 4733 4734 4735 4736 4737 4738 |
# File 'lib/aws-sdk-costexplorer/types.rb', line 4730 class Impact < Struct.new( :max_impact, :total_impact, :total_actual_spend, :total_expected_spend, :total_impact_percentage) SENSITIVE = [] include Aws::Structure end |