Struct rusoto_rds::ModifyDBSubnetGroupMessage [] [src]

pub struct ModifyDBSubnetGroupMessage {
    pub db_subnet_group_description: Option<String>,
    pub db_subnet_group_name: String,
    pub subnet_ids: Vec<String>,
}

Fields

The description for the DB subnet group.

The name for the DB subnet group. This value is stored as a lowercase string.

Constraints: Must contain no more than 255 alphanumeric characters, periods, underscores, spaces, or hyphens. Must not be default.

Example: mySubnetgroup

The EC2 subnet IDs for the DB subnet group.

Trait Implementations

impl Default for ModifyDBSubnetGroupMessage
[src]

[src]

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

impl Debug for ModifyDBSubnetGroupMessage
[src]

[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyDBSubnetGroupMessage
[src]

[src]

Returns a copy of the value. Read more

1.0.0
[src]

Performs copy-assignment from source. Read more

Auto Trait Implementations