[][src]Struct rusoto_redshift::RevokeClusterSecurityGroupIngressMessage

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

cidrip: Option<String>

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.

cluster_security_group_name: String

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

ec2_security_group_name: Option<String>

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.

ec2_security_group_owner_id: Option<String>

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 Clone for RevokeClusterSecurityGroupIngressMessage[src]

impl Debug for RevokeClusterSecurityGroupIngressMessage[src]

impl Default for RevokeClusterSecurityGroupIngressMessage[src]

impl PartialEq<RevokeClusterSecurityGroupIngressMessage> for RevokeClusterSecurityGroupIngressMessage[src]

impl StructuralPartialEq for RevokeClusterSecurityGroupIngressMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.