Struct aws_sdk_connect::operation::batch_get_attached_file_metadata::builders::BatchGetAttachedFileMetadataOutputBuilder
source · #[non_exhaustive]pub struct BatchGetAttachedFileMetadataOutputBuilder { /* private fields */ }
Expand description
A builder for BatchGetAttachedFileMetadataOutput
.
Implementations§
source§impl BatchGetAttachedFileMetadataOutputBuilder
impl BatchGetAttachedFileMetadataOutputBuilder
sourcepub fn files(self, input: AttachedFile) -> Self
pub fn files(self, input: AttachedFile) -> Self
Appends an item to files
.
To override the contents of this collection use set_files
.
List of attached files that were successfully retrieved.
sourcepub fn set_files(self, input: Option<Vec<AttachedFile>>) -> Self
pub fn set_files(self, input: Option<Vec<AttachedFile>>) -> Self
List of attached files that were successfully retrieved.
sourcepub fn get_files(&self) -> &Option<Vec<AttachedFile>>
pub fn get_files(&self) -> &Option<Vec<AttachedFile>>
List of attached files that were successfully retrieved.
sourcepub fn errors(self, input: AttachedFileError) -> Self
pub fn errors(self, input: AttachedFileError) -> Self
Appends an item to errors
.
To override the contents of this collection use set_errors
.
List of errors of attached files that could not be retrieved.
sourcepub fn set_errors(self, input: Option<Vec<AttachedFileError>>) -> Self
pub fn set_errors(self, input: Option<Vec<AttachedFileError>>) -> Self
List of errors of attached files that could not be retrieved.
sourcepub fn get_errors(&self) -> &Option<Vec<AttachedFileError>>
pub fn get_errors(&self) -> &Option<Vec<AttachedFileError>>
List of errors of attached files that could not be retrieved.
sourcepub fn build(self) -> BatchGetAttachedFileMetadataOutput
pub fn build(self) -> BatchGetAttachedFileMetadataOutput
Consumes the builder and constructs a BatchGetAttachedFileMetadataOutput
.
Trait Implementations§
source§impl Clone for BatchGetAttachedFileMetadataOutputBuilder
impl Clone for BatchGetAttachedFileMetadataOutputBuilder
source§fn clone(&self) -> BatchGetAttachedFileMetadataOutputBuilder
fn clone(&self) -> BatchGetAttachedFileMetadataOutputBuilder
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 Default for BatchGetAttachedFileMetadataOutputBuilder
impl Default for BatchGetAttachedFileMetadataOutputBuilder
source§fn default() -> BatchGetAttachedFileMetadataOutputBuilder
fn default() -> BatchGetAttachedFileMetadataOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for BatchGetAttachedFileMetadataOutputBuilder
impl PartialEq for BatchGetAttachedFileMetadataOutputBuilder
source§fn eq(&self, other: &BatchGetAttachedFileMetadataOutputBuilder) -> bool
fn eq(&self, other: &BatchGetAttachedFileMetadataOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for BatchGetAttachedFileMetadataOutputBuilder
Auto Trait Implementations§
impl Freeze for BatchGetAttachedFileMetadataOutputBuilder
impl RefUnwindSafe for BatchGetAttachedFileMetadataOutputBuilder
impl Send for BatchGetAttachedFileMetadataOutputBuilder
impl Sync for BatchGetAttachedFileMetadataOutputBuilder
impl Unpin for BatchGetAttachedFileMetadataOutputBuilder
impl UnwindSafe for BatchGetAttachedFileMetadataOutputBuilder
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default 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.