Struct aws_sdk_rds::model::DbSubnetGroup
source · [−]#[non_exhaustive]pub struct DbSubnetGroup { /* private fields */ }Expand description
Contains the details of an Amazon RDS DB subnet group.
This data type is used as a response element in the DescribeDBSubnetGroups action.
Implementations
sourceimpl DbSubnetGroup
impl DbSubnetGroup
sourcepub fn db_subnet_group_name(&self) -> Option<&str>
pub fn db_subnet_group_name(&self) -> Option<&str>
The name of the DB subnet group.
sourcepub fn db_subnet_group_description(&self) -> Option<&str>
pub fn db_subnet_group_description(&self) -> Option<&str>
Provides the description of the DB subnet group.
sourcepub fn subnet_group_status(&self) -> Option<&str>
pub fn subnet_group_status(&self) -> Option<&str>
Provides the status of the DB subnet group.
sourcepub fn db_subnet_group_arn(&self) -> Option<&str>
pub fn db_subnet_group_arn(&self) -> Option<&str>
The Amazon Resource Name (ARN) for the DB subnet group.
sourcepub fn supported_network_types(&self) -> Option<&[String]>
pub fn supported_network_types(&self) -> Option<&[String]>
The network type of the DB subnet group.
Valid values:
-
IPV4 -
DUAL
A DBSubnetGroup can support only the IPv4 protocol or the IPv4 and the IPv6 protocols (DUAL).
For more information, see Working with a DB instance in a VPC in the Amazon RDS User Guide.
sourceimpl DbSubnetGroup
impl DbSubnetGroup
sourcepub fn builder() -> Builder
pub fn builder() -> Builder
Creates a new builder-style object to manufacture DbSubnetGroup.
Trait Implementations
sourceimpl Clone for DbSubnetGroup
impl Clone for DbSubnetGroup
sourcefn clone(&self) -> DbSubnetGroup
fn clone(&self) -> DbSubnetGroup
Returns a copy of the value. Read more
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moresourceimpl Debug for DbSubnetGroup
impl Debug for DbSubnetGroup
sourceimpl PartialEq<DbSubnetGroup> for DbSubnetGroup
impl PartialEq<DbSubnetGroup> for DbSubnetGroup
sourcefn eq(&self, other: &DbSubnetGroup) -> bool
fn eq(&self, other: &DbSubnetGroup) -> bool
impl StructuralPartialEq for DbSubnetGroup
Auto Trait Implementations
impl RefUnwindSafe for DbSubnetGroup
impl Send for DbSubnetGroup
impl Sync for DbSubnetGroup
impl Unpin for DbSubnetGroup
impl UnwindSafe for DbSubnetGroup
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more