Class: Aws::RDS::Types::OptionGroupMembership
- Inherits:
- 
      Struct
      
        - Object
- Struct
- Aws::RDS::Types::OptionGroupMembership
 
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-rds/types.rb
Overview
Provides information on the option groups the DB instance is a member of.
Constant Summary collapse
- SENSITIVE =
- [] 
Instance Attribute Summary collapse
- 
  
    
      #option_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The name of the option group that the instance belongs to. 
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    The status of the DB instance’s option group membership. 
Instance Attribute Details
#option_group_name ⇒ String
The name of the option group that the instance belongs to.
| 20122 20123 20124 20125 20126 20127 | # File 'lib/aws-sdk-rds/types.rb', line 20122 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end | 
#status ⇒ String
The status of the DB instance’s option group membership. Valid values are: ‘in-sync`, `pending-apply`, `pending-removal`, `pending-maintenance-apply`, `pending-maintenance-removal`, `applying`, `removing`, and `failed`.
| 20122 20123 20124 20125 20126 20127 | # File 'lib/aws-sdk-rds/types.rb', line 20122 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end |