Class: Aws::RDS::Types::AvailableProcessorFeature
- Inherits:
-
Struct
- Object
- Struct
- Aws::RDS::Types::AvailableProcessorFeature
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Contains the available processor feature information for the DB instance class of a DB instance.
For more information, see [Configuring the Processor of the DB Instance Class] in the Amazon RDS User Guide.
[1]: docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.DBInstanceClass.html#USER_ConfigureProcessor
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#allowed_values ⇒ String
The allowed values for the processor feature of the DB instance class.
-
#default_value ⇒ String
The default value for the processor feature of the DB instance class.
-
#name ⇒ String
The name of the processor feature.
Instance Attribute Details
#allowed_values ⇒ String
The allowed values for the processor feature of the DB instance class.
472 473 474 475 476 477 478 |
# File 'lib/aws-sdk-rds/types.rb', line 472 class AvailableProcessorFeature < Struct.new( :name, :default_value, :allowed_values) SENSITIVE = [] include Aws::Structure end |
#default_value ⇒ String
The default value for the processor feature of the DB instance class.
472 473 474 475 476 477 478 |
# File 'lib/aws-sdk-rds/types.rb', line 472 class AvailableProcessorFeature < Struct.new( :name, :default_value, :allowed_values) SENSITIVE = [] include Aws::Structure end |
#name ⇒ String
The name of the processor feature. Valid names are ‘coreCount` and `threadsPerCore`.
472 473 474 475 476 477 478 |
# File 'lib/aws-sdk-rds/types.rb', line 472 class AvailableProcessorFeature < Struct.new( :name, :default_value, :allowed_values) SENSITIVE = [] include Aws::Structure end |