Class: Aws::DocDB::Types::UpgradeTarget
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::DocDB::Types::UpgradeTarget
 
- Defined in:
- gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb
Overview
The version of the database engine that an instance can be upgraded to.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #auto_upgrade  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A value that indicates whether the target version is applied to any source DB instances that have AutoMinorVersionUpgradeset totrue.
- 
  
    
      #description  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version of the database engine that an instance can be upgraded to. 
- 
  
    
      #engine  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the upgrade target database engine. 
- 
  
    
      #engine_version  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The version number of the upgrade target database engine. 
- 
  
    
      #is_major_version_upgrade  ⇒ Boolean 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    A value that indicates whether a database engine is upgraded to a major version. 
Instance Attribute Details
#auto_upgrade ⇒ Boolean
A value that indicates whether the target version is applied to any
source DB instances that have AutoMinorVersionUpgrade set to
true.
| 6288 6289 6290 6291 6292 6293 6294 6295 6296 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 6288 class UpgradeTarget < Struct.new( :engine, :engine_version, :description, :auto_upgrade, :is_major_version_upgrade) SENSITIVE = [] include Aws::Structure end | 
#description ⇒ String
The version of the database engine that an instance can be upgraded to.
| 6288 6289 6290 6291 6292 6293 6294 6295 6296 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 6288 class UpgradeTarget < Struct.new( :engine, :engine_version, :description, :auto_upgrade, :is_major_version_upgrade) SENSITIVE = [] include Aws::Structure end | 
#engine ⇒ String
The name of the upgrade target database engine.
| 6288 6289 6290 6291 6292 6293 6294 6295 6296 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 6288 class UpgradeTarget < Struct.new( :engine, :engine_version, :description, :auto_upgrade, :is_major_version_upgrade) SENSITIVE = [] include Aws::Structure end | 
#engine_version ⇒ String
The version number of the upgrade target database engine.
| 6288 6289 6290 6291 6292 6293 6294 6295 6296 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 6288 class UpgradeTarget < Struct.new( :engine, :engine_version, :description, :auto_upgrade, :is_major_version_upgrade) SENSITIVE = [] include Aws::Structure end | 
#is_major_version_upgrade ⇒ Boolean
A value that indicates whether a database engine is upgraded to a major version.
| 6288 6289 6290 6291 6292 6293 6294 6295 6296 | # File 'gems/aws-sdk-docdb/lib/aws-sdk-docdb/types.rb', line 6288 class UpgradeTarget < Struct.new( :engine, :engine_version, :description, :auto_upgrade, :is_major_version_upgrade) SENSITIVE = [] include Aws::Structure end |