#[non_exhaustive]pub struct DescribeImportOutputBuilder { /* private fields */ }
Expand description
A builder for DescribeImportOutput
.
Implementations§
source§impl DescribeImportOutputBuilder
impl DescribeImportOutputBuilder
sourcepub fn import_table_description(self, input: ImportTableDescription) -> Self
pub fn import_table_description(self, input: ImportTableDescription) -> Self
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
This field is required.sourcepub fn set_import_table_description(
self,
input: Option<ImportTableDescription>,
) -> Self
pub fn set_import_table_description( self, input: Option<ImportTableDescription>, ) -> Self
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
sourcepub fn get_import_table_description(&self) -> &Option<ImportTableDescription>
pub fn get_import_table_description(&self) -> &Option<ImportTableDescription>
Represents the properties of the table created for the import, and parameters of the import. The import parameters include import status, how many items were processed, and how many errors were encountered.
sourcepub fn build(self) -> DescribeImportOutput
pub fn build(self) -> DescribeImportOutput
Consumes the builder and constructs a DescribeImportOutput
.
Trait Implementations§
source§impl Clone for DescribeImportOutputBuilder
impl Clone for DescribeImportOutputBuilder
source§fn clone(&self) -> DescribeImportOutputBuilder
fn clone(&self) -> DescribeImportOutputBuilder
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 DescribeImportOutputBuilder
impl Debug for DescribeImportOutputBuilder
source§impl Default for DescribeImportOutputBuilder
impl Default for DescribeImportOutputBuilder
source§fn default() -> DescribeImportOutputBuilder
fn default() -> DescribeImportOutputBuilder
Returns the “default value” for a type. Read more
source§impl PartialEq for DescribeImportOutputBuilder
impl PartialEq for DescribeImportOutputBuilder
source§fn eq(&self, other: &DescribeImportOutputBuilder) -> bool
fn eq(&self, other: &DescribeImportOutputBuilder) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DescribeImportOutputBuilder
Auto Trait Implementations§
impl Freeze for DescribeImportOutputBuilder
impl RefUnwindSafe for DescribeImportOutputBuilder
impl Send for DescribeImportOutputBuilder
impl Sync for DescribeImportOutputBuilder
impl Unpin for DescribeImportOutputBuilder
impl UnwindSafe for DescribeImportOutputBuilder
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.