Class: Aws::EC2::Types::CpuOptionsRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::CpuOptionsRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-ec2/types.rb
Overview
The CPU options for the instance. Both the core count and threads per core must be specified in the request.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amd_sev_snp ⇒ String
Indicates whether to enable the instance for AMD SEV-SNP.
-
#core_count ⇒ Integer
The number of CPU cores for the instance.
-
#threads_per_core ⇒ Integer
The number of threads per CPU core.
Instance Attribute Details
#amd_sev_snp ⇒ String
Indicates whether to enable the instance for AMD SEV-SNP. AMD SEV-SNP is supported with M6a, R6a, and C6a instance types only. For more information, see [AMD SEV-SNP].
[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html
7371 7372 7373 7374 7375 7376 7377 |
# File 'lib/aws-sdk-ec2/types.rb', line 7371 class CpuOptionsRequest < Struct.new( :core_count, :threads_per_core, :amd_sev_snp) SENSITIVE = [] include Aws::Structure end |
#core_count ⇒ Integer
The number of CPU cores for the instance.
7371 7372 7373 7374 7375 7376 7377 |
# File 'lib/aws-sdk-ec2/types.rb', line 7371 class CpuOptionsRequest < Struct.new( :core_count, :threads_per_core, :amd_sev_snp) SENSITIVE = [] include Aws::Structure end |
#threads_per_core ⇒ Integer
The number of threads per CPU core. To disable multithreading for the instance, specify a value of ‘1`. Otherwise, specify the default value of `2`.
7371 7372 7373 7374 7375 7376 7377 |
# File 'lib/aws-sdk-ec2/types.rb', line 7371 class CpuOptionsRequest < Struct.new( :core_count, :threads_per_core, :amd_sev_snp) SENSITIVE = [] include Aws::Structure end |