#[non_exhaustive]pub struct DeleteImportOutput {
pub import_id: Option<String>,
pub import_status: Option<ImportStatus>,
/* private fields */
}
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Non-exhaustive structs could have additional fields added in future. Therefore, non-exhaustive structs cannot be constructed in external crates using the traditional
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.import_id: Option<String>
The unique identifier of the deleted import.
import_status: 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.
Implementations§
source§impl DeleteImportOutput
impl DeleteImportOutput
sourcepub fn import_status(&self) -> Option<&ImportStatus>
pub fn 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.
source§impl DeleteImportOutput
impl DeleteImportOutput
sourcepub fn builder() -> DeleteImportOutputBuilder
pub fn builder() -> DeleteImportOutputBuilder
Creates a new builder-style object to manufacture DeleteImportOutput
.
Trait Implementations§
source§impl Clone for DeleteImportOutput
impl Clone for DeleteImportOutput
source§fn clone(&self) -> DeleteImportOutput
fn clone(&self) -> DeleteImportOutput
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 DeleteImportOutput
impl Debug for DeleteImportOutput
source§impl PartialEq for DeleteImportOutput
impl PartialEq for DeleteImportOutput
source§fn eq(&self, other: &DeleteImportOutput) -> bool
fn eq(&self, other: &DeleteImportOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteImportOutput
impl RequestId for DeleteImportOutput
source§fn request_id(&self) -> Option<&str>
fn request_id(&self) -> Option<&str>
Returns the request ID, or
None
if the service could not be reached.impl StructuralPartialEq for DeleteImportOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteImportOutput
impl Send for DeleteImportOutput
impl Sync for DeleteImportOutput
impl Unpin for DeleteImportOutput
impl UnwindSafe for DeleteImportOutput
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>
Creates a shared type from an unshared type.