Class: Aws::CostOptimizationHub::Types::ComputeConfiguration
- Inherits:
-
Struct
- Object
- Struct
- Aws::CostOptimizationHub::Types::ComputeConfiguration
- Defined in:
- gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb
Overview
Describes the performance configuration for compute services such as Amazon EC2, Lambda, and ECS.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#architecture ⇒ String
The architecture of the resource.
-
#memory_size_in_mb ⇒ Integer
The memory size of the resource.
-
#platform ⇒ String
The platform of the resource.
-
#v_cpu ⇒ Float
The number of vCPU cores in the resource.
Instance Attribute Details
#architecture ⇒ String
The architecture of the resource.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 101 class ComputeConfiguration < Struct.new( :v_cpu, :memory_size_in_mb, :architecture, :platform) SENSITIVE = [] include Aws::Structure end |
#memory_size_in_mb ⇒ Integer
The memory size of the resource.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 101 class ComputeConfiguration < Struct.new( :v_cpu, :memory_size_in_mb, :architecture, :platform) SENSITIVE = [] include Aws::Structure end |
#platform ⇒ String
The platform of the resource. The platform is the specific combination of operating system, license model, and software on an instance.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 101 class ComputeConfiguration < Struct.new( :v_cpu, :memory_size_in_mb, :architecture, :platform) SENSITIVE = [] include Aws::Structure end |
#v_cpu ⇒ Float
The number of vCPU cores in the resource.
101 102 103 104 105 106 107 108 |
# File 'gems/aws-sdk-costoptimizationhub/lib/aws-sdk-costoptimizationhub/types.rb', line 101 class ComputeConfiguration < Struct.new( :v_cpu, :memory_size_in_mb, :architecture, :platform) SENSITIVE = [] include Aws::Structure end |