Class: Aws::RDS::Types::MinimumEngineVersionPerAllowedValue
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::MinimumEngineVersionPerAllowedValue
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
The minimum DB engine version required for each corresponding allowed value for an option setting.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #allowed_value  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The allowed value for an option setting.
 - 
  
    
      #minimum_engine_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The minimum DB engine version required for the allowed value.
 
Instance Attribute Details
#allowed_value ⇒ String
The allowed value for an option setting.
      17053 17054 17055 17056 17057 17058  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 17053 class MinimumEngineVersionPerAllowedValue < Struct.new( :allowed_value, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end  | 
  
#minimum_engine_version ⇒ String
The minimum DB engine version required for the allowed value.
      17053 17054 17055 17056 17057 17058  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 17053 class MinimumEngineVersionPerAllowedValue < Struct.new( :allowed_value, :minimum_engine_version) SENSITIVE = [] include Aws::Structure end  |