Class: Aws::SnowDeviceManagement::Types::CpuOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::SnowDeviceManagement::Types::CpuOptions
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-snowdevicemanagement/types.rb
Overview
The options for how a device’s CPU is configured.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#core_count ⇒ Integer
The number of cores that the CPU can use.
-
#threads_per_core ⇒ Integer
The number of threads per core in the CPU.
Instance Attribute Details
#core_count ⇒ Integer
The number of cores that the CPU can use.
124 125 126 127 128 129 |
# File 'lib/aws-sdk-snowdevicemanagement/types.rb', line 124 class CpuOptions < Struct.new( :core_count, :threads_per_core) SENSITIVE = [] include Aws::Structure end |
#threads_per_core ⇒ Integer
The number of threads per core in the CPU.
124 125 126 127 128 129 |
# File 'lib/aws-sdk-snowdevicemanagement/types.rb', line 124 class CpuOptions < Struct.new( :core_count, :threads_per_core) SENSITIVE = [] include Aws::Structure end |