Class: Aws::CostExplorer::Types::Impact

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb

Overview

The dollar value of the anomaly.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#max_impactFloat

The maximum dollar value that's observed for an anomaly.

Returns:

  • (Float)


5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5586

class Impact < Struct.new(
  :max_impact,
  :total_impact,
  :total_actual_spend,
  :total_expected_spend,
  :total_impact_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#total_actual_spendFloat

The cumulative dollar amount that was actually spent during the anomaly.

Returns:

  • (Float)


5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5586

class Impact < Struct.new(
  :max_impact,
  :total_impact,
  :total_actual_spend,
  :total_expected_spend,
  :total_impact_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#total_expected_spendFloat

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.

Returns:

  • (Float)


5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5586

class Impact < Struct.new(
  :max_impact,
  :total_impact,
  :total_actual_spend,
  :total_expected_spend,
  :total_impact_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#total_impactFloat

The cumulative dollar difference between the total actual spend and total expected spend. It is calculated as TotalActualSpend - TotalExpectedSpend.

Returns:

  • (Float)


5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5586

class Impact < Struct.new(
  :max_impact,
  :total_impact,
  :total_actual_spend,
  :total_expected_spend,
  :total_impact_percentage)
  SENSITIVE = []
  include Aws::Structure
end

#total_impact_percentageFloat

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.

Returns:

  • (Float)


5586
5587
5588
5589
5590
5591
5592
5593
5594
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5586

class Impact < Struct.new(
  :max_impact,
  :total_impact,
  :total_actual_spend,
  :total_expected_spend,
  :total_impact_percentage)
  SENSITIVE = []
  include Aws::Structure
end