Struct aws_sdk_kafka::types::builders::BrokerLogsBuilder
source · #[non_exhaustive]pub struct BrokerLogsBuilder { /* private fields */ }
Expand description
A builder for BrokerLogs
.
Implementations§
source§impl BrokerLogsBuilder
impl BrokerLogsBuilder
pub fn cloud_watch_logs(self, input: CloudWatchLogs) -> Self
pub fn set_cloud_watch_logs(self, input: Option<CloudWatchLogs>) -> Self
pub fn get_cloud_watch_logs(&self) -> &Option<CloudWatchLogs>
pub fn firehose(self, input: Firehose) -> Self
pub fn set_firehose(self, input: Option<Firehose>) -> Self
pub fn get_firehose(&self) -> &Option<Firehose>
pub fn s3(self, input: S3) -> Self
pub fn set_s3(self, input: Option<S3>) -> Self
pub fn get_s3(&self) -> &Option<S3>
sourcepub fn build(self) -> BrokerLogs
pub fn build(self) -> BrokerLogs
Consumes the builder and constructs a BrokerLogs
.
Trait Implementations§
source§impl Clone for BrokerLogsBuilder
impl Clone for BrokerLogsBuilder
source§fn clone(&self) -> BrokerLogsBuilder
fn clone(&self) -> BrokerLogsBuilder
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 BrokerLogsBuilder
impl Debug for BrokerLogsBuilder
source§impl Default for BrokerLogsBuilder
impl Default for BrokerLogsBuilder
source§fn default() -> BrokerLogsBuilder
fn default() -> BrokerLogsBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BrokerLogsBuilder
impl PartialEq for BrokerLogsBuilder
impl StructuralPartialEq for BrokerLogsBuilder
Auto Trait Implementations§
impl Freeze for BrokerLogsBuilder
impl RefUnwindSafe for BrokerLogsBuilder
impl Send for BrokerLogsBuilder
impl Sync for BrokerLogsBuilder
impl Unpin for BrokerLogsBuilder
impl UnwindSafe for BrokerLogsBuilder
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> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§unsafe fn clone_to_uninit(&self, dst: *mut T)
unsafe fn clone_to_uninit(&self, dst: *mut T)
🔬This is a nightly-only experimental API. (
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>
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.