Struct aws_sdk_rds::operation::stop_activity_stream::builders::StopActivityStreamInputBuilder
source · #[non_exhaustive]pub struct StopActivityStreamInputBuilder { /* private fields */ }Expand description
A builder for StopActivityStreamInput.
Implementations§
source§impl StopActivityStreamInputBuilder
impl StopActivityStreamInputBuilder
sourcepub fn resource_arn(self, input: impl Into<String>) -> Self
pub fn resource_arn(self, input: impl Into<String>) -> Self
The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.
sourcepub fn set_resource_arn(self, input: Option<String>) -> Self
pub fn set_resource_arn(self, input: Option<String>) -> Self
The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.
sourcepub fn get_resource_arn(&self) -> &Option<String>
pub fn get_resource_arn(&self) -> &Option<String>
The Amazon Resource Name (ARN) of the DB cluster for the database activity stream. For example, arn:aws:rds:us-east-1:12345667890:cluster:das-cluster.
sourcepub fn apply_immediately(self, input: bool) -> Self
pub fn apply_immediately(self, input: bool) -> Self
Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.
sourcepub fn set_apply_immediately(self, input: Option<bool>) -> Self
pub fn set_apply_immediately(self, input: Option<bool>) -> Self
Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.
sourcepub fn get_apply_immediately(&self) -> &Option<bool>
pub fn get_apply_immediately(&self) -> &Option<bool>
Specifies whether or not the database activity stream is to stop as soon as possible, regardless of the maintenance window for the database.
sourcepub fn build(self) -> Result<StopActivityStreamInput, BuildError>
pub fn build(self) -> Result<StopActivityStreamInput, BuildError>
Consumes the builder and constructs a StopActivityStreamInput.
source§impl StopActivityStreamInputBuilder
impl StopActivityStreamInputBuilder
sourcepub async fn send_with(
self,
client: &Client,
) -> Result<StopActivityStreamOutput, SdkError<StopActivityStreamError, HttpResponse>>
pub async fn send_with( self, client: &Client, ) -> Result<StopActivityStreamOutput, SdkError<StopActivityStreamError, HttpResponse>>
Sends a request with this input using the given client.
Trait Implementations§
source§impl Clone for StopActivityStreamInputBuilder
impl Clone for StopActivityStreamInputBuilder
source§fn clone(&self) -> StopActivityStreamInputBuilder
fn clone(&self) -> StopActivityStreamInputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for StopActivityStreamInputBuilder
impl Default for StopActivityStreamInputBuilder
source§fn default() -> StopActivityStreamInputBuilder
fn default() -> StopActivityStreamInputBuilder
source§impl PartialEq for StopActivityStreamInputBuilder
impl PartialEq for StopActivityStreamInputBuilder
source§fn eq(&self, other: &StopActivityStreamInputBuilder) -> bool
fn eq(&self, other: &StopActivityStreamInputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopActivityStreamInputBuilder
Auto Trait Implementations§
impl Freeze for StopActivityStreamInputBuilder
impl RefUnwindSafe for StopActivityStreamInputBuilder
impl Send for StopActivityStreamInputBuilder
impl Sync for StopActivityStreamInputBuilder
impl Unpin for StopActivityStreamInputBuilder
impl UnwindSafe for StopActivityStreamInputBuilder
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