Struct rusoto_rds::DBSubnetGroup[][src]

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

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

Provides the description of the DB subnet group.

The name of the DB subnet group.

Provides the status of the DB subnet group.

Contains a list of Subnet elements.

Provides the VpcId of the DB subnet group.

Trait Implementations

impl Default for DBSubnetGroup
[src]

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

impl Debug for DBSubnetGroup
[src]

Formats the value using the given formatter. Read more

impl Clone for DBSubnetGroup
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

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