Struct rusoto_elasticache::CreateCacheSubnetGroupMessage[][src]

pub struct CreateCacheSubnetGroupMessage {
    pub cache_subnet_group_description: String,
    pub cache_subnet_group_name: String,
    pub subnet_ids: Vec<String>,
}

Represents the input of a CreateCacheSubnetGroup operation.

Fields

A description for the cache subnet group.

A name for the cache subnet group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters or hyphens.

Example: mysubnetgroup

A list of VPC subnet IDs for the cache subnet group.

Trait Implementations

impl Default for CreateCacheSubnetGroupMessage
[src]

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

impl Debug for CreateCacheSubnetGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateCacheSubnetGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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