Class: Aws::EC2::Types::LaunchTemplateCpuOptionsRequest

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

Overview

Note:

When making an API call, you may pass LaunchTemplateCpuOptionsRequest data as a hash:

{
  core_count: 1,
  threads_per_core: 1,
}

The CPU options for the instance. Both the core count and threads per core must be specified in the request.

Instance Attribute Summary collapse

Instance Attribute Details

#core_countInteger

The number of CPU cores for the instance.

Returns:

  • (Integer)


23797
23798
23799
23800
23801
# File 'lib/aws-sdk-ec2/types.rb', line 23797

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

#threads_per_coreInteger

The number of threads per CPU core. To disable Intel Hyper-Threading Technology for the instance, specify a value of 1. Otherwise, specify the default value of 2.

Returns:

  • (Integer)


23797
23798
23799
23800
23801
# File 'lib/aws-sdk-ec2/types.rb', line 23797

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