#[non_exhaustive]pub struct ReplicationSubnetGroup { /* private fields */ }
Expand description
Describes a subnet group in response to a request by the DescribeReplicationSubnetGroups
operation.
Implementations§
source§impl ReplicationSubnetGroup
impl ReplicationSubnetGroup
sourcepub fn replication_subnet_group_identifier(&self) -> Option<&str>
pub fn replication_subnet_group_identifier(&self) -> Option<&str>
The identifier of the replication instance subnet group.
sourcepub fn replication_subnet_group_description(&self) -> Option<&str>
pub fn replication_subnet_group_description(&self) -> Option<&str>
A description for the replication subnet group.
sourcepub fn subnet_group_status(&self) -> Option<&str>
pub fn subnet_group_status(&self) -> Option<&str>
The status of the subnet group.
sourcepub fn supported_network_types(&self) -> Option<&[String]>
pub fn supported_network_types(&self) -> Option<&[String]>
The IP addressing protocol supported by the subnet group. This is used by a replication instance with values such as IPv4 only or Dual-stack that supports both IPv4 and IPv6 addressing. IPv6 only is not yet supported.
source§impl ReplicationSubnetGroup
impl ReplicationSubnetGroup
sourcepub fn builder() -> ReplicationSubnetGroupBuilder
pub fn builder() -> ReplicationSubnetGroupBuilder
Creates a new builder-style object to manufacture ReplicationSubnetGroup
.
Trait Implementations§
source§impl Clone for ReplicationSubnetGroup
impl Clone for ReplicationSubnetGroup
source§fn clone(&self) -> ReplicationSubnetGroup
fn clone(&self) -> ReplicationSubnetGroup
Returns a copy of the value. Read more
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moresource§impl Debug for ReplicationSubnetGroup
impl Debug for ReplicationSubnetGroup
source§impl PartialEq<ReplicationSubnetGroup> for ReplicationSubnetGroup
impl PartialEq<ReplicationSubnetGroup> for ReplicationSubnetGroup
source§fn eq(&self, other: &ReplicationSubnetGroup) -> bool
fn eq(&self, other: &ReplicationSubnetGroup) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for ReplicationSubnetGroup
Auto Trait Implementations§
impl RefUnwindSafe for ReplicationSubnetGroup
impl Send for ReplicationSubnetGroup
impl Sync for ReplicationSubnetGroup
impl Unpin for ReplicationSubnetGroup
impl UnwindSafe for ReplicationSubnetGroup
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more