#[non_exhaustive]pub struct AwsRdsDbSubnetGroupSubnetBuilder { /* private fields */ }
Expand description
A builder for AwsRdsDbSubnetGroupSubnet
.
Implementations§
source§impl AwsRdsDbSubnetGroupSubnetBuilder
impl AwsRdsDbSubnetGroupSubnetBuilder
sourcepub fn subnet_identifier(self, input: impl Into<String>) -> Self
pub fn subnet_identifier(self, input: impl Into<String>) -> Self
The identifier of a subnet in the subnet group.
sourcepub fn set_subnet_identifier(self, input: Option<String>) -> Self
pub fn set_subnet_identifier(self, input: Option<String>) -> Self
The identifier of a subnet in the subnet group.
sourcepub fn get_subnet_identifier(&self) -> &Option<String>
pub fn get_subnet_identifier(&self) -> &Option<String>
The identifier of a subnet in the subnet group.
sourcepub fn subnet_availability_zone(
self,
input: AwsRdsDbSubnetGroupSubnetAvailabilityZone
) -> Self
pub fn subnet_availability_zone( self, input: AwsRdsDbSubnetGroupSubnetAvailabilityZone ) -> Self
Information about the Availability Zone for a subnet in the subnet group.
sourcepub fn set_subnet_availability_zone(
self,
input: Option<AwsRdsDbSubnetGroupSubnetAvailabilityZone>
) -> Self
pub fn set_subnet_availability_zone( self, input: Option<AwsRdsDbSubnetGroupSubnetAvailabilityZone> ) -> Self
Information about the Availability Zone for a subnet in the subnet group.
sourcepub fn get_subnet_availability_zone(
&self
) -> &Option<AwsRdsDbSubnetGroupSubnetAvailabilityZone>
pub fn get_subnet_availability_zone( &self ) -> &Option<AwsRdsDbSubnetGroupSubnetAvailabilityZone>
Information about the Availability Zone for a subnet in the subnet group.
sourcepub fn subnet_status(self, input: impl Into<String>) -> Self
pub fn subnet_status(self, input: impl Into<String>) -> Self
The status of a subnet in the subnet group.
sourcepub fn set_subnet_status(self, input: Option<String>) -> Self
pub fn set_subnet_status(self, input: Option<String>) -> Self
The status of a subnet in the subnet group.
sourcepub fn get_subnet_status(&self) -> &Option<String>
pub fn get_subnet_status(&self) -> &Option<String>
The status of a subnet in the subnet group.
sourcepub fn build(self) -> AwsRdsDbSubnetGroupSubnet
pub fn build(self) -> AwsRdsDbSubnetGroupSubnet
Consumes the builder and constructs a AwsRdsDbSubnetGroupSubnet
.
Trait Implementations§
source§impl Clone for AwsRdsDbSubnetGroupSubnetBuilder
impl Clone for AwsRdsDbSubnetGroupSubnetBuilder
source§fn clone(&self) -> AwsRdsDbSubnetGroupSubnetBuilder
fn clone(&self) -> AwsRdsDbSubnetGroupSubnetBuilder
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 Default for AwsRdsDbSubnetGroupSubnetBuilder
impl Default for AwsRdsDbSubnetGroupSubnetBuilder
source§fn default() -> AwsRdsDbSubnetGroupSubnetBuilder
fn default() -> AwsRdsDbSubnetGroupSubnetBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for AwsRdsDbSubnetGroupSubnetBuilder
impl PartialEq for AwsRdsDbSubnetGroupSubnetBuilder
source§fn eq(&self, other: &AwsRdsDbSubnetGroupSubnetBuilder) -> bool
fn eq(&self, other: &AwsRdsDbSubnetGroupSubnetBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for AwsRdsDbSubnetGroupSubnetBuilder
Auto Trait Implementations§
impl Freeze for AwsRdsDbSubnetGroupSubnetBuilder
impl RefUnwindSafe for AwsRdsDbSubnetGroupSubnetBuilder
impl Send for AwsRdsDbSubnetGroupSubnetBuilder
impl Sync for AwsRdsDbSubnetGroupSubnetBuilder
impl Unpin for AwsRdsDbSubnetGroupSubnetBuilder
impl UnwindSafe for AwsRdsDbSubnetGroupSubnetBuilder
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
source§impl<T> Instrument for T
impl<T> Instrument for T
source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
Converts
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreCreates a shared type from an unshared type.