Class: Aws::RDS::Types::VpcSecurityGroupMembership
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::VpcSecurityGroupMembership
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
This data type is used as a response element for queries on VPC security group membership.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The membership status of the VPC security group.
 - 
  
    
      #vpc_security_group_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the VPC security group.
 
Instance Attribute Details
#status ⇒ String
The membership status of the VPC security group.
Currently, the only valid status is ‘active`.
      28440 28441 28442 28443 28444 28445  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 28440 class VpcSecurityGroupMembership < Struct.new( :vpc_security_group_id, :status) SENSITIVE = [] include Aws::Structure end  | 
  
#vpc_security_group_id ⇒ String
The name of the VPC security group.
      28440 28441 28442 28443 28444 28445  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 28440 class VpcSecurityGroupMembership < Struct.new( :vpc_security_group_id, :status) SENSITIVE = [] include Aws::Structure end  |