Struct rusoto_elasticache::CacheSecurityGroup[][src]

pub struct CacheSecurityGroup {
    pub cache_security_group_name: Option<String>,
    pub description: Option<String>,
    pub ec2_security_groups: Option<Vec<EC2SecurityGroup>>,
    pub owner_id: Option<String>,
}

Represents the output of one of the following operations:

  • AuthorizeCacheSecurityGroupIngress

  • CreateCacheSecurityGroup

  • RevokeCacheSecurityGroupIngress

Fields

The name of the cache security group.

The description of the cache security group.

A list of Amazon EC2 security groups that are associated with this cache security group.

The AWS account ID of the cache security group owner.

Trait Implementations

impl Default for CacheSecurityGroup
[src]

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

impl Debug for CacheSecurityGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for CacheSecurityGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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