Class: Aws::SecurityHub::Types::AwsEc2LaunchTemplateDataCpuOptionsDetails
- Inherits:
-
Struct
- Object
- Struct
- Aws::SecurityHub::Types::AwsEc2LaunchTemplateDataCpuOptionsDetails
- Defined in:
- gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb
Overview
Specifies the CPU options for an Amazon EC2 instance. For more information, see Optimize CPU options in the Amazon Elastic Compute Cloud User Guide.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#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
#core_count ⇒ Integer
The number of CPU cores for the instance.
6746 6747 6748 6749 6750 6751 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6746 class AwsEc2LaunchTemplateDataCpuOptionsDetails < Struct.new( :core_count, :threads_per_core) SENSITIVE = [] include Aws::Structure end |
#threads_per_core ⇒ Integer
The number of threads per CPU core. A value of 1
disables
multithreading for the instance, The default value is 2
.
6746 6747 6748 6749 6750 6751 |
# File 'gems/aws-sdk-securityhub/lib/aws-sdk-securityhub/types.rb', line 6746 class AwsEc2LaunchTemplateDataCpuOptionsDetails < Struct.new( :core_count, :threads_per_core) SENSITIVE = [] include Aws::Structure end |