Struct rusoto_dms::ModifyReplicationSubnetGroupMessage[][src]

pub struct ModifyReplicationSubnetGroupMessage {
    pub replication_subnet_group_description: Option<String>,
    pub replication_subnet_group_identifier: String,
    pub subnet_ids: Vec<String>,
}

Fields

The description of the replication instance subnet group.

The name of the replication instance subnet group.

A list of subnet IDs.

Trait Implementations

impl Default for ModifyReplicationSubnetGroupMessage
[src]

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

impl Debug for ModifyReplicationSubnetGroupMessage
[src]

Formats the value using the given formatter. Read more

impl Clone for ModifyReplicationSubnetGroupMessage
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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