[][src]Struct rusoto_docdb::CreateDBSubnetGroupMessage

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>>,
}

Represents the input to CreateDBSubnetGroup.

Fields

db_subnet_group_description: String

The description for the subnet group.

db_subnet_group_name: String

The name for the 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

subnet_ids: Vec<String>

The Amazon EC2 subnet IDs for the subnet group.

tags: Option<Vec<Tag>>

The tags to be assigned to the subnet group.

Trait Implementations

impl Clone for CreateDBSubnetGroupMessage[src]

impl Debug for CreateDBSubnetGroupMessage[src]

impl Default for CreateDBSubnetGroupMessage[src]

impl PartialEq<CreateDBSubnetGroupMessage> for CreateDBSubnetGroupMessage[src]

impl StructuralPartialEq for CreateDBSubnetGroupMessage[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> Instrument for T[src]

impl<T> Instrument 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.