[][src]Struct rusoto_dms::CreateReplicationSubnetGroupMessage

pub struct CreateReplicationSubnetGroupMessage {
    pub replication_subnet_group_description: String,
    pub replication_subnet_group_identifier: String,
    pub subnet_ids: Vec<String>,
    pub tags: Option<Vec<Tag>>,
}

Fields

replication_subnet_group_description: String

The description for the subnet group.

replication_subnet_group_identifier: String

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

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

Example: mySubnetgroup

subnet_ids: Vec<String>

One or more subnet IDs to be assigned to the subnet group.

tags: Option<Vec<Tag>>

One or more tags to be assigned to the subnet group.

Trait Implementations

impl Clone for CreateReplicationSubnetGroupMessage[src]

impl Debug for CreateReplicationSubnetGroupMessage[src]

impl Default for CreateReplicationSubnetGroupMessage[src]

impl PartialEq<CreateReplicationSubnetGroupMessage> for CreateReplicationSubnetGroupMessage[src]

impl Serialize for CreateReplicationSubnetGroupMessage[src]

impl StructuralPartialEq for CreateReplicationSubnetGroupMessage[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.