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.
| 20416 20417 20418 20419 20420 20421 | # File 'lib/aws-sdk-rds/types.rb', line 20416 class OptionVersion < Struct.new( :version, :is_default) SENSITIVE = [] include Aws::Structure end | 
#version ⇒ String
The version of the option.
| 20416 20417 20418 20419 20420 20421 | # File 'lib/aws-sdk-rds/types.rb', line 20416 class OptionVersion < Struct.new( :version, :is_default) SENSITIVE = [] include Aws::Structure end |