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.
| 15216 15217 15218 15219 15220 15221 15222 15223 | # File 'lib/aws-sdk-rds/types.rb', line 15216 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.
| 15216 15217 15218 15219 15220 15221 15222 15223 | # File 'lib/aws-sdk-rds/types.rb', line 15216 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.
| 15216 15217 15218 15219 15220 15221 15222 15223 | # File 'lib/aws-sdk-rds/types.rb', line 15216 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”.
| 15216 15217 15218 15219 15220 15221 15222 15223 | # File 'lib/aws-sdk-rds/types.rb', line 15216 class EC2SecurityGroup < Struct.new( :status, :ec2_security_group_name, :ec2_security_group_id, :ec2_security_group_owner_id) SENSITIVE = [] include Aws::Structure end |