Class: Aws::SnowDeviceManagement::Types::CpuOptions

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-snowdevicemanagement/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

Instance Attribute Details

#core_countInteger

The number of cores that the CPU can use.

Returns:

  • (Integer)


124
125
126
127
128
129
# File 'gems/aws-sdk-snowdevicemanagement/lib/aws-sdk-snowdevicemanagement/types.rb', line 124

class CpuOptions < Struct.new(
  :core_count,
  :threads_per_core)
  SENSITIVE = []
  include Aws::Structure
end

#threads_per_coreInteger

The number of threads per core in the CPU.

Returns:

  • (Integer)


124
125
126
127
128
129
# File 'gems/aws-sdk-snowdevicemanagement/lib/aws-sdk-snowdevicemanagement/types.rb', line 124

class CpuOptions < Struct.new(
  :core_count,
  :threads_per_core)
  SENSITIVE = []
  include Aws::Structure
end