Struct rusoto_dms::ReplicationSubnetGroup[][src]

pub struct ReplicationSubnetGroup {
    pub replication_subnet_group_description: Option<String>,
    pub replication_subnet_group_identifier: Option<String>,
    pub subnet_group_status: Option<String>,
    pub subnets: Option<Vec<Subnet>>,
    pub vpc_id: Option<String>,
}

Fields

The description of the replication subnet group.

The identifier of the replication instance subnet group.

The status of the subnet group.

The subnets that are in the subnet group.

The ID of the VPC.

Trait Implementations

impl Default for ReplicationSubnetGroup
[src]

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

impl Debug for ReplicationSubnetGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for ReplicationSubnetGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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