#[non_exhaustive]pub struct DeleteImportOutputBuilder { /* private fields */ }Expand description
A builder for DeleteImportOutput.
Implementations§
source§impl DeleteImportOutputBuilder
impl DeleteImportOutputBuilder
sourcepub fn import_id(self, input: impl Into<String>) -> Self
pub fn import_id(self, input: impl Into<String>) -> Self
The unique identifier of the deleted import.
sourcepub fn set_import_id(self, input: Option<String>) -> Self
pub fn set_import_id(self, input: Option<String>) -> Self
The unique identifier of the deleted import.
sourcepub fn get_import_id(&self) -> &Option<String>
pub fn get_import_id(&self) -> &Option<String>
The unique identifier of the deleted import.
sourcepub fn import_status(self, input: ImportStatus) -> Self
pub fn import_status(self, input: ImportStatus) -> Self
The current status of the deletion. When the deletion is complete, the import will no longer be returned by the ListImports operation and calls to the DescribeImport operation with the import identifier will fail.
sourcepub fn set_import_status(self, input: Option<ImportStatus>) -> Self
pub fn set_import_status(self, input: Option<ImportStatus>) -> Self
The current status of the deletion. When the deletion is complete, the import will no longer be returned by the ListImports operation and calls to the DescribeImport operation with the import identifier will fail.
sourcepub fn get_import_status(&self) -> &Option<ImportStatus>
pub fn get_import_status(&self) -> &Option<ImportStatus>
The current status of the deletion. When the deletion is complete, the import will no longer be returned by the ListImports operation and calls to the DescribeImport operation with the import identifier will fail.
sourcepub fn build(self) -> DeleteImportOutput
pub fn build(self) -> DeleteImportOutput
Consumes the builder and constructs a DeleteImportOutput.
Trait Implementations§
source§impl Clone for DeleteImportOutputBuilder
impl Clone for DeleteImportOutputBuilder
source§fn clone(&self) -> DeleteImportOutputBuilder
fn clone(&self) -> DeleteImportOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for DeleteImportOutputBuilder
impl Debug for DeleteImportOutputBuilder
source§impl Default for DeleteImportOutputBuilder
impl Default for DeleteImportOutputBuilder
source§fn default() -> DeleteImportOutputBuilder
fn default() -> DeleteImportOutputBuilder
impl StructuralPartialEq for DeleteImportOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteImportOutputBuilder
impl RefUnwindSafe for DeleteImportOutputBuilder
impl Send for DeleteImportOutputBuilder
impl Sync for DeleteImportOutputBuilder
impl Unpin for DeleteImportOutputBuilder
impl UnwindSafe for DeleteImportOutputBuilder
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> 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)
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>
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