Struct rusoto_elasticache::ModifyCacheSubnetGroupMessage[][src]

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

Represents the input of a ModifyCacheSubnetGroup operation.

Fields

A description of the cache subnet group.

The 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

The EC2 subnet IDs for the cache subnet group.

Trait Implementations

impl Default for ModifyCacheSubnetGroupMessage
[src]

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

impl Debug for ModifyCacheSubnetGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyCacheSubnetGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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