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]

[src]

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

impl Debug for CacheSecurityGroup
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for CacheSecurityGroup
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations