Class: Aws::EC2::Types::LaunchTemplateCpuOptions
- Inherits:
-
Struct
- Object
- Struct
- Aws::EC2::Types::LaunchTemplateCpuOptions
- Defined in:
- gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb
Overview
The CPU options for the instance.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#amd_sev_snp ⇒ String
Indicates whether the instance is enabled 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 the instance is enabled for AMD SEV-SNP. For more information, see AMD SEV-SNP.
47597 47598 47599 47600 47601 47602 47603 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47597 class LaunchTemplateCpuOptions < 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.
47597 47598 47599 47600 47601 47602 47603 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47597 class LaunchTemplateCpuOptions < 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.
47597 47598 47599 47600 47601 47602 47603 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 47597 class LaunchTemplateCpuOptions < Struct.new( :core_count, :threads_per_core, :amd_sev_snp) SENSITIVE = [] include Aws::Structure end |