Struct rusoto_redshift::RevokeClusterSecurityGroupIngressMessage [] [src]

pub struct RevokeClusterSecurityGroupIngressMessage {
    pub cidrip: Option<String>,
    pub cluster_security_group_name: String,
    pub ec2_security_group_name: Option<String>,
    pub ec2_security_group_owner_id: Option<String>,
}

Fields

The IP range for which to revoke access. This range must be a valid Classless Inter-Domain Routing (CIDR) block of IP addresses. If CIDRIP is specified, EC2SecurityGroupName and EC2SecurityGroupOwnerId cannot be provided.

The name of the security Group from which to revoke the ingress rule.

The name of the EC2 Security Group whose access is to be revoked. If EC2SecurityGroupName is specified, EC2SecurityGroupOwnerId must also be provided and CIDRIP cannot be provided.

The AWS account number of the owner of the security group specified in the EC2SecurityGroupName parameter. The AWS access key ID is not an acceptable value. If EC2SecurityGroupOwnerId is specified, EC2SecurityGroupName must also be provided. and CIDRIP cannot be provided.

Example: 111122223333

Trait Implementations

impl Default for RevokeClusterSecurityGroupIngressMessage
[src]

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

impl Debug for RevokeClusterSecurityGroupIngressMessage
[src]

Formats the value using the given formatter.

impl Clone for RevokeClusterSecurityGroupIngressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more