Struct aws_sdk_iotanalytics::operation::batch_put_message::builders::BatchPutMessageOutputBuilder
source · #[non_exhaustive]pub struct BatchPutMessageOutputBuilder { /* private fields */ }
Expand description
A builder for BatchPutMessageOutput
.
Implementations§
source§impl BatchPutMessageOutputBuilder
impl BatchPutMessageOutputBuilder
sourcepub fn batch_put_message_error_entries(
self,
input: BatchPutMessageErrorEntry
) -> Self
pub fn batch_put_message_error_entries( self, input: BatchPutMessageErrorEntry ) -> Self
Appends an item to batch_put_message_error_entries
.
To override the contents of this collection use set_batch_put_message_error_entries
.
A list of any errors encountered when sending the messages to the channel.
sourcepub fn set_batch_put_message_error_entries(
self,
input: Option<Vec<BatchPutMessageErrorEntry>>
) -> Self
pub fn set_batch_put_message_error_entries( self, input: Option<Vec<BatchPutMessageErrorEntry>> ) -> Self
A list of any errors encountered when sending the messages to the channel.
sourcepub fn get_batch_put_message_error_entries(
&self
) -> &Option<Vec<BatchPutMessageErrorEntry>>
pub fn get_batch_put_message_error_entries( &self ) -> &Option<Vec<BatchPutMessageErrorEntry>>
A list of any errors encountered when sending the messages to the channel.
sourcepub fn build(self) -> BatchPutMessageOutput
pub fn build(self) -> BatchPutMessageOutput
Consumes the builder and constructs a BatchPutMessageOutput
.
Trait Implementations§
source§impl Clone for BatchPutMessageOutputBuilder
impl Clone for BatchPutMessageOutputBuilder
source§fn clone(&self) -> BatchPutMessageOutputBuilder
fn clone(&self) -> BatchPutMessageOutputBuilder
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 BatchPutMessageOutputBuilder
impl Debug for BatchPutMessageOutputBuilder
source§impl Default for BatchPutMessageOutputBuilder
impl Default for BatchPutMessageOutputBuilder
source§fn default() -> BatchPutMessageOutputBuilder
fn default() -> BatchPutMessageOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchPutMessageOutputBuilder
impl PartialEq for BatchPutMessageOutputBuilder
source§fn eq(&self, other: &BatchPutMessageOutputBuilder) -> bool
fn eq(&self, other: &BatchPutMessageOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchPutMessageOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchPutMessageOutputBuilder
impl RefUnwindSafe for BatchPutMessageOutputBuilder
impl Send for BatchPutMessageOutputBuilder
impl Sync for BatchPutMessageOutputBuilder
impl Unpin for BatchPutMessageOutputBuilder
impl UnwindSafe for BatchPutMessageOutputBuilder
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.