Struct rusoto_elasticache::RevokeCacheSecurityGroupIngressMessage[][src]

pub struct RevokeCacheSecurityGroupIngressMessage {
    pub cache_security_group_name: String,
    pub ec2_security_group_name: String,
    pub ec2_security_group_owner_id: String,
}

Represents the input of a RevokeCacheSecurityGroupIngress operation.

Fields

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

The name of the Amazon EC2 security group to revoke access from.

The AWS account number of the Amazon EC2 security group owner. Note that this is not the same thing as an AWS access key ID - you must provide a valid AWS account number for this parameter.

Trait Implementations

impl Default for RevokeCacheSecurityGroupIngressMessage
[src]

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

impl Debug for RevokeCacheSecurityGroupIngressMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for RevokeCacheSecurityGroupIngressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for RevokeCacheSecurityGroupIngressMessage
[src]

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

Auto Trait Implementations