Class: Aws::CostExplorer::Types::RightsizingRecommendationConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::RightsizingRecommendationConfiguration
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
When making an API call, you may pass RightsizingRecommendationConfiguration data as a hash:
{
recommendation_target: "SAME_INSTANCE_FAMILY", # required, accepts SAME_INSTANCE_FAMILY, CROSS_INSTANCE_FAMILY
benefits_considered: false, # required
}
Enables you to customize recommendations across two attributes. You can choose to view recommendations for instances within the same instance families or across different instance families. You can also choose to view your estimated savings associated with recommendations with consideration of existing Savings Plans or RI benefits, or neither.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#benefits_considered ⇒ Boolean
The option to consider RI or Savings Plans discount benefits in your savings calculation.
-
#recommendation_target ⇒ String
The option to see recommendations within the same instance family, or recommendations for instances across other families.
Instance Attribute Details
#benefits_considered ⇒ Boolean
The option to consider RI or Savings Plans discount benefits in your
savings calculation. The default value is TRUE
.
5583 5584 5585 5586 5587 5588 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5583 class RightsizingRecommendationConfiguration < Struct.new( :recommendation_target, :benefits_considered) SENSITIVE = [] include Aws::Structure end |
#recommendation_target ⇒ String
The option to see recommendations within the same instance family,
or recommendations for instances across other families. The default
value is SAME_INSTANCE_FAMILY
.
5583 5584 5585 5586 5587 5588 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 5583 class RightsizingRecommendationConfiguration < Struct.new( :recommendation_target, :benefits_considered) SENSITIVE = [] include Aws::Structure end |