Class: Aws::CostExplorer::Types::EC2Specification
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostExplorer::Types::EC2Specification
- Defined in:
- gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb
Overview
Note:
When making an API call, you may pass EC2Specification data as a hash:
{
offering_class: "STANDARD", # accepts STANDARD, CONVERTIBLE
}
The Amazon EC2 hardware specifications that you want Amazon Web Services to provide recommendations for.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#offering_class ⇒ String
Indicates whether you want a recommendation for standard or convertible reservations.
Instance Attribute Details
#offering_class ⇒ String
Indicates whether you want a recommendation for standard or convertible reservations.
1834 1835 1836 1837 1838 |
# File 'gems/aws-sdk-costexplorer/lib/aws-sdk-costexplorer/types.rb', line 1834 class EC2Specification < Struct.new( :offering_class) SENSITIVE = [] include Aws::Structure end |