Class: Aws::RDS::Types::EC2SecurityGroup
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::RDS::Types::EC2SecurityGroup
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-rds/types.rb
 
Overview
This data type is used as a response element in the following actions:
- 
‘AuthorizeDBSecurityGroupIngress`
 - 
‘DescribeDBSecurityGroups`
 - 
‘RevokeDBSecurityGroupIngress`
 
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #ec2_security_group_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the id of the EC2 security group.
 - 
  
    
      #ec2_security_group_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the name of the EC2 security group.
 - 
  
    
      #ec2_security_group_owner_id  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the ‘EC2SecurityGroupName` field.
 - 
  
    
      #status  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Provides the status of the EC2 security group.
 
Instance Attribute Details
#ec2_security_group_id ⇒ String
Specifies the id of the EC2 security group.
      15539 15540 15541 15542 15543 15544 15545 15546  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 15539 class EC2SecurityGroup < Struct.new( :status, :ec2_security_group_name, :ec2_security_group_id, :ec2_security_group_owner_id) SENSITIVE = [] include Aws::Structure end  | 
  
#ec2_security_group_name ⇒ String
Specifies the name of the EC2 security group.
      15539 15540 15541 15542 15543 15544 15545 15546  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 15539 class EC2SecurityGroup < Struct.new( :status, :ec2_security_group_name, :ec2_security_group_id, :ec2_security_group_owner_id) SENSITIVE = [] include Aws::Structure end  | 
  
#ec2_security_group_owner_id ⇒ String
Specifies the Amazon Web Services ID of the owner of the EC2 security group specified in the ‘EC2SecurityGroupName` field.
      15539 15540 15541 15542 15543 15544 15545 15546  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 15539 class EC2SecurityGroup < Struct.new( :status, :ec2_security_group_name, :ec2_security_group_id, :ec2_security_group_owner_id) SENSITIVE = [] include Aws::Structure end  | 
  
#status ⇒ String
Provides the status of the EC2 security group. Status can be “authorizing”, “authorized”, “revoking”, and “revoked”.
      15539 15540 15541 15542 15543 15544 15545 15546  | 
    
      # File 'lib/aws-sdk-rds/types.rb', line 15539 class EC2SecurityGroup < Struct.new( :status, :ec2_security_group_name, :ec2_security_group_id, :ec2_security_group_owner_id) SENSITIVE = [] include Aws::Structure end  |