Struct aws_sdk_rds::operation::stop_activity_stream::builders::StopActivityStreamOutputBuilder
source · #[non_exhaustive]pub struct StopActivityStreamOutputBuilder { /* private fields */ }Expand description
A builder for StopActivityStreamOutput.
Implementations§
source§impl StopActivityStreamOutputBuilder
impl StopActivityStreamOutputBuilder
sourcepub fn kms_key_id(self, input: impl Into<String>) -> Self
pub fn kms_key_id(self, input: impl Into<String>) -> Self
The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.
The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
sourcepub fn set_kms_key_id(self, input: Option<String>) -> Self
pub fn set_kms_key_id(self, input: Option<String>) -> Self
The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.
The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
sourcepub fn get_kms_key_id(&self) -> &Option<String>
pub fn get_kms_key_id(&self) -> &Option<String>
The Amazon Web Services KMS key identifier used for encrypting messages in the database activity stream.
The Amazon Web Services KMS key identifier is the key ARN, key ID, alias ARN, or alias name for the KMS key.
sourcepub fn kinesis_stream_name(self, input: impl Into<String>) -> Self
pub fn kinesis_stream_name(self, input: impl Into<String>) -> Self
The name of the Amazon Kinesis data stream used for the database activity stream.
sourcepub fn set_kinesis_stream_name(self, input: Option<String>) -> Self
pub fn set_kinesis_stream_name(self, input: Option<String>) -> Self
The name of the Amazon Kinesis data stream used for the database activity stream.
sourcepub fn get_kinesis_stream_name(&self) -> &Option<String>
pub fn get_kinesis_stream_name(&self) -> &Option<String>
The name of the Amazon Kinesis data stream used for the database activity stream.
sourcepub fn status(self, input: ActivityStreamStatus) -> Self
pub fn status(self, input: ActivityStreamStatus) -> Self
The status of the database activity stream.
sourcepub fn set_status(self, input: Option<ActivityStreamStatus>) -> Self
pub fn set_status(self, input: Option<ActivityStreamStatus>) -> Self
The status of the database activity stream.
sourcepub fn get_status(&self) -> &Option<ActivityStreamStatus>
pub fn get_status(&self) -> &Option<ActivityStreamStatus>
The status of the database activity stream.
sourcepub fn build(self) -> StopActivityStreamOutput
pub fn build(self) -> StopActivityStreamOutput
Consumes the builder and constructs a StopActivityStreamOutput.
Trait Implementations§
source§impl Clone for StopActivityStreamOutputBuilder
impl Clone for StopActivityStreamOutputBuilder
source§fn clone(&self) -> StopActivityStreamOutputBuilder
fn clone(&self) -> StopActivityStreamOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Default for StopActivityStreamOutputBuilder
impl Default for StopActivityStreamOutputBuilder
source§fn default() -> StopActivityStreamOutputBuilder
fn default() -> StopActivityStreamOutputBuilder
source§impl PartialEq for StopActivityStreamOutputBuilder
impl PartialEq for StopActivityStreamOutputBuilder
source§fn eq(&self, other: &StopActivityStreamOutputBuilder) -> bool
fn eq(&self, other: &StopActivityStreamOutputBuilder) -> bool
self and other values to be equal, and is used
by ==.impl StructuralPartialEq for StopActivityStreamOutputBuilder
Auto Trait Implementations§
impl Freeze for StopActivityStreamOutputBuilder
impl RefUnwindSafe for StopActivityStreamOutputBuilder
impl Send for StopActivityStreamOutputBuilder
impl Sync for StopActivityStreamOutputBuilder
impl Unpin for StopActivityStreamOutputBuilder
impl UnwindSafe for StopActivityStreamOutputBuilder
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> 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