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]

[src]

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

impl Debug for ModifyCacheSubnetGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyCacheSubnetGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations