[][src]Struct rusoto_rds::DBSubnetGroup

pub struct DBSubnetGroup {
    pub db_subnet_group_arn: Option<String>,
    pub db_subnet_group_description: Option<String>,
    pub db_subnet_group_name: Option<String>,
    pub subnet_group_status: Option<String>,
    pub subnets: Option<Vec<Subnet>>,
    pub vpc_id: Option<String>,
}

Contains the details of an Amazon RDS DB subnet group.

This data type is used as a response element in the DescribeDBSubnetGroups action.

Fields

db_subnet_group_arn: Option<String>

The Amazon Resource Name (ARN) for the DB subnet group.

db_subnet_group_description: Option<String>

Provides the description of the DB subnet group.

db_subnet_group_name: Option<String>

The name of the DB subnet group.

subnet_group_status: Option<String>

Provides the status of the DB subnet group.

subnets: Option<Vec<Subnet>>

Contains a list of Subnet elements.

vpc_id: Option<String>

Provides the VpcId of the DB subnet group.

Trait Implementations

impl Clone for DBSubnetGroup[src]

impl Default for DBSubnetGroup[src]

impl PartialEq<DBSubnetGroup> for DBSubnetGroup[src]

impl Debug for DBSubnetGroup[src]

Auto Trait Implementations

Blanket Implementations

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

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

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.

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

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

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

impl<T> Same<T> for T

type Output = T

Should always be Self