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.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#amd_sev_snpString

Indicates whether the instance is enabled for AMD SEV-SNP. For more information, see [AMD SEV-SNP].

[1]: docs.aws.amazon.com/AWSEC2/latest/UserGuide/sev-snp.html

Returns:

  • (String)


44099
44100
44101
44102
44103
44104
44105
# File 'lib/aws-sdk-ec2/types.rb', line 44099

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

#core_countInteger

The number of CPU cores for the instance.

Returns:

  • (Integer)


44099
44100
44101
44102
44103
44104
44105
# File 'lib/aws-sdk-ec2/types.rb', line 44099

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

#threads_per_coreInteger

The number of threads per CPU core.

Returns:

  • (Integer)


44099
44100
44101
44102
44103
44104
44105
# File 'lib/aws-sdk-ec2/types.rb', line 44099

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