Struct rusoto_rds::RevokeDBSecurityGroupIngressMessage [] [src]

pub struct RevokeDBSecurityGroupIngressMessage {
    pub cidrip: Option<String>,
    pub db_security_group_name: String,
    pub ec2_security_group_id: Option<String>,
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
}

Fields

The IP range to revoke access from. Must be a valid CIDR range. If CIDRIP is specified, EC2SecurityGroupName, EC2SecurityGroupId and EC2SecurityGroupOwnerId cannot be provided.

The name of the DB security group to revoke ingress from.

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.

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.

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.

Trait Implementations

impl Default for RevokeDBSecurityGroupIngressMessage
[src]

[src]

Returns the "default value" for a type. Read more

impl Debug for RevokeDBSecurityGroupIngressMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for RevokeDBSecurityGroupIngressMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations