Class: Aws::RDS::Types::OptionVersion
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::OptionVersion
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
The version for an option. Option group option versions are returned by the ‘DescribeOptionGroupOptions` action.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #is_default  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Indicates whether the version is the default version of the option.
 - 
  
    
      #version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The version of the option.
 
Instance Attribute Details
#is_default ⇒ Boolean
Indicates whether the version is the default version of the option.
      20838 20839 20840 20841 20842 20843  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 20838 class OptionVersion < Struct.new( :version, :is_default) SENSITIVE = [] include Aws::Structure end  | 
  
#version ⇒ String
The version of the option.
      20838 20839 20840 20841 20842 20843  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 20838 class OptionVersion < Struct.new( :version, :is_default) SENSITIVE = [] include Aws::Structure end  |