Class: Aws::EC2::Types::LaunchTemplateCpuOptions

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

The CPU options for the instance.

Instance Attribute Summary collapse

Instance Attribute Details

#core_countInteger

The number of CPU cores for the instance.

Returns:

  • (Integer)


23942
23943
23944
23945
23946
# File 'lib/aws-sdk-ec2/types.rb', line 23942

class LaunchTemplateCpuOptions < Struct.new(
  :core_count,
  :threads_per_core)
  include Aws::Structure
end

#threads_per_coreInteger

The number of threads per CPU core.

Returns:

  • (Integer)


23942
23943
23944
23945
23946
# File 'lib/aws-sdk-ec2/types.rb', line 23942

class LaunchTemplateCpuOptions < Struct.new(
  :core_count,
  :threads_per_core)
  include Aws::Structure
end