Container for the parameters to the RevokeDBSecurityGroupIngress operation.

Revokes ingress from a DBSecurityGroup for previously authorized IP ranges or EC2 or VPC Security Groups. Required parameters for this API are one of CIDRIP, EC2SecurityGroupId for VPC, or (EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId).

Namespace: Amazon.RDS.Model
Assembly: AWSSDK (in AWSSDK.dll) Version: 1.4.10.0 (1.4.10.0)

Syntax

         
 C#  Visual Basic  Visual C++ 
public class RevokeDBSecurityGroupIngressRequest : AmazonWebServiceRequest
Public Class RevokeDBSecurityGroupIngressRequest _
	Inherits AmazonWebServiceRequest
public ref class RevokeDBSecurityGroupIngressRequest : public AmazonWebServiceRequest

Members

            
 All Members  Constructors   Properties   Methods  
 Public

 Protected
 Instance

 Static 
 Declared

 Inherited
 XNA Framework Only 

 .NET Compact Framework Only 

 MemberDescription
RevokeDBSecurityGroupIngressRequest()()()()
Initializes a new instance of the RevokeDBSecurityGroupIngressRequest class
CIDRIP
The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId cannot be provided.
DBSecurityGroupName
The name of the DB Security Group to revoke ingress from.
EC2SecurityGroupId
The id of the EC2 Security Group to revoke access from. For VPC DB Security Groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
EC2SecurityGroupName
The name of the EC2 Security Group to revoke access from. For VPC DB Security Groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
EC2SecurityGroupOwnerId
The AWS Account Number of the owner of the EC2 security group specified in the EC2SecurityGroupName parameter. The AWS Access Key ID is not an acceptable value. For VPC DB Security Groups, EC2SecurityGroupId must be provided. Otherwise, EC2SecurityGroupOwnerId and either EC2SecurityGroupName or EC2SecurityGroupId must be provided.
Equals(Object)
Determines whether the specified Object is equal to the current Object.
(Inherited from Object.)
GetHashCode()()()()
Serves as a hash function for a particular type.
(Inherited from Object.)
GetType()()()()
Gets the Type of the current instance.
(Inherited from Object.)
ToString()()()()
Returns a String that represents the current Object.
(Inherited from Object.)
WithCIDRIP(String)
Sets the CIDRIP property
WithDBSecurityGroupName(String)
Sets the DBSecurityGroupName property
WithEC2SecurityGroupId(String)
Sets the EC2SecurityGroupId property
WithEC2SecurityGroupName(String)
Sets the EC2SecurityGroupName property
WithEC2SecurityGroupOwnerId(String)
Sets the EC2SecurityGroupOwnerId property

Inheritance Hierarchy

System..::..Object
  Amazon.Runtime..::..AmazonWebServiceRequest
    Amazon.RDS.Model..::..RevokeDBSecurityGroupIngressRequest

See Also