Struct rusoto_rds::CreateDBSubnetGroupMessage[][src]

pub struct CreateDBSubnetGroupMessage {
    pub db_subnet_group_description: String,
    pub db_subnet_group_name: String,
    pub subnet_ids: Vec<String>,
    pub tags: Option<Vec<Tag>>,
}

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 letters, numbers, 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 CreateDBSubnetGroupMessage
[src]

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

impl Debug for CreateDBSubnetGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for CreateDBSubnetGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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