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.
| 455 456 457 458 459 460 461 | # File 'lib/aws-sdk-rds/types.rb', line 455 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.
| 455 456 457 458 459 460 461 | # File 'lib/aws-sdk-rds/types.rb', line 455 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`.
| 455 456 457 458 459 460 461 | # File 'lib/aws-sdk-rds/types.rb', line 455 class AvailableProcessorFeature < Struct.new( :name, :default_value, :allowed_values) SENSITIVE = [] include Aws::Structure end |