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.
      20544 20545 20546 20547 20548 20549  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 20544 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`.
      20544 20545 20546 20547 20548 20549  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 20544 class OptionGroupMembership < Struct.new( :option_group_name, :status) SENSITIVE = [] include Aws::Structure end  |