Struct rusoto_elasticache::AuthorizeCacheSecurityGroupIngressMessage[][src]

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

Represents the input of an AuthorizeCacheSecurityGroupIngress operation.

Fields

The cache security group that allows network ingress.

The Amazon EC2 security group to be authorized for ingress to the cache security group.

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 AuthorizeCacheSecurityGroupIngressMessage
[src]

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

impl Debug for AuthorizeCacheSecurityGroupIngressMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for AuthorizeCacheSecurityGroupIngressMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl PartialEq for AuthorizeCacheSecurityGroupIngressMessage
[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