#[non_exhaustive]pub struct AwsRdsDbStatusInfoBuilder { /* private fields */ }Expand description
A builder for AwsRdsDbStatusInfo.
Implementations§
source§impl AwsRdsDbStatusInfoBuilder
impl AwsRdsDbStatusInfoBuilder
sourcepub fn status_type(self, input: impl Into<String>) -> Self
pub fn status_type(self, input: impl Into<String>) -> Self
The type of status. For a read replica, the status type is read replication.
sourcepub fn set_status_type(self, input: Option<String>) -> Self
pub fn set_status_type(self, input: Option<String>) -> Self
The type of status. For a read replica, the status type is read replication.
sourcepub fn get_status_type(&self) -> &Option<String>
pub fn get_status_type(&self) -> &Option<String>
The type of status. For a read replica, the status type is read replication.
sourcepub fn normal(self, input: bool) -> Self
pub fn normal(self, input: bool) -> Self
Whether the read replica instance is operating normally.
sourcepub fn set_normal(self, input: Option<bool>) -> Self
pub fn set_normal(self, input: Option<bool>) -> Self
Whether the read replica instance is operating normally.
sourcepub fn get_normal(&self) -> &Option<bool>
pub fn get_normal(&self) -> &Option<bool>
Whether the read replica instance is operating normally.
sourcepub fn set_status(self, input: Option<String>) -> Self
pub fn set_status(self, input: Option<String>) -> Self
The status of the read replica instance.
sourcepub fn get_status(&self) -> &Option<String>
pub fn get_status(&self) -> &Option<String>
The status of the read replica instance.
sourcepub fn message(self, input: impl Into<String>) -> Self
pub fn message(self, input: impl Into<String>) -> Self
If the read replica is currently in an error state, provides the error details.
sourcepub fn set_message(self, input: Option<String>) -> Self
pub fn set_message(self, input: Option<String>) -> Self
If the read replica is currently in an error state, provides the error details.
sourcepub fn get_message(&self) -> &Option<String>
pub fn get_message(&self) -> &Option<String>
If the read replica is currently in an error state, provides the error details.
sourcepub fn build(self) -> AwsRdsDbStatusInfo
pub fn build(self) -> AwsRdsDbStatusInfo
Consumes the builder and constructs a AwsRdsDbStatusInfo.
Trait Implementations§
source§impl Clone for AwsRdsDbStatusInfoBuilder
impl Clone for AwsRdsDbStatusInfoBuilder
source§fn clone(&self) -> AwsRdsDbStatusInfoBuilder
fn clone(&self) -> AwsRdsDbStatusInfoBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for AwsRdsDbStatusInfoBuilder
impl Debug for AwsRdsDbStatusInfoBuilder
source§impl Default for AwsRdsDbStatusInfoBuilder
impl Default for AwsRdsDbStatusInfoBuilder
source§fn default() -> AwsRdsDbStatusInfoBuilder
fn default() -> AwsRdsDbStatusInfoBuilder
source§impl PartialEq for AwsRdsDbStatusInfoBuilder
impl PartialEq for AwsRdsDbStatusInfoBuilder
source§fn eq(&self, other: &AwsRdsDbStatusInfoBuilder) -> bool
fn eq(&self, other: &AwsRdsDbStatusInfoBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for AwsRdsDbStatusInfoBuilder
Auto Trait Implementations§
impl Freeze for AwsRdsDbStatusInfoBuilder
impl RefUnwindSafe for AwsRdsDbStatusInfoBuilder
impl Send for AwsRdsDbStatusInfoBuilder
impl Sync for AwsRdsDbStatusInfoBuilder
impl Unpin for AwsRdsDbStatusInfoBuilder
impl UnwindSafe for AwsRdsDbStatusInfoBuilder
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
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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>
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>
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 more