Struct rusoto_elasticache::CacheSubnetGroup[][src]

pub struct CacheSubnetGroup {
    pub cache_subnet_group_description: Option<String>,
    pub cache_subnet_group_name: Option<String>,
    pub subnets: Option<Vec<Subnet>>,
    pub vpc_id: Option<String>,
}

Represents the output of one of the following operations:

  • CreateCacheSubnetGroup

  • ModifyCacheSubnetGroup

Fields

The description of the cache subnet group.

The name of the cache subnet group.

A list of subnets associated with the cache subnet group.

The Amazon Virtual Private Cloud identifier (VPC ID) of the cache subnet group.

Trait Implementations

impl Default for CacheSubnetGroup
[src]

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

impl Debug for CacheSubnetGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for CacheSubnetGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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