[][src]Struct rusoto_docdb::ModifyDBSubnetGroupMessage

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

Represents the input to ModifyDBSubnetGroup.

Fields

db_subnet_group_description: Option<String>

The description for the DB subnet group.

db_subnet_group_name: String

The name for the DB subnet group. This value is stored as a lowercase string. You can't modify the default subnet group.

Constraints: Must match the name of an existing DBSubnetGroup. Must not be default.

Example: mySubnetgroup

subnet_ids: Vec<String>

The Amazon EC2 subnet IDs for the DB subnet group.

Trait Implementations

impl Clone for ModifyDBSubnetGroupMessage[src]

impl Debug for ModifyDBSubnetGroupMessage[src]

impl Default for ModifyDBSubnetGroupMessage[src]

impl PartialEq<ModifyDBSubnetGroupMessage> for ModifyDBSubnetGroupMessage[src]

impl StructuralPartialEq for ModifyDBSubnetGroupMessage[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> Same<T> for T

type Output = T

Should always be Self

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.