#[non_exhaustive]pub struct DeleteExportOutput {
pub export_id: Option<String>,
pub export_status: Option<ExportStatus>,
/* 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.export_id: Option<String>
The unique identifier of the deleted export.
export_status: Option<ExportStatus>
The current status of the deletion. When the deletion is complete, the export will no longer be returned by the ListExports operation and calls to the DescribeExport operation with the export identifier will fail.
Implementations§
source§impl DeleteExportOutput
impl DeleteExportOutput
sourcepub fn export_status(&self) -> Option<&ExportStatus>
pub fn export_status(&self) -> Option<&ExportStatus>
The current status of the deletion. When the deletion is complete, the export will no longer be returned by the ListExports operation and calls to the DescribeExport operation with the export identifier will fail.
source§impl DeleteExportOutput
impl DeleteExportOutput
sourcepub fn builder() -> DeleteExportOutputBuilder
pub fn builder() -> DeleteExportOutputBuilder
Creates a new builder-style object to manufacture DeleteExportOutput
.
Trait Implementations§
source§impl Clone for DeleteExportOutput
impl Clone for DeleteExportOutput
source§fn clone(&self) -> DeleteExportOutput
fn clone(&self) -> DeleteExportOutput
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 DeleteExportOutput
impl Debug for DeleteExportOutput
source§impl PartialEq for DeleteExportOutput
impl PartialEq for DeleteExportOutput
source§fn eq(&self, other: &DeleteExportOutput) -> bool
fn eq(&self, other: &DeleteExportOutput) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.source§impl RequestId for DeleteExportOutput
impl RequestId for DeleteExportOutput
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 DeleteExportOutput
Auto Trait Implementations§
impl RefUnwindSafe for DeleteExportOutput
impl Send for DeleteExportOutput
impl Sync for DeleteExportOutput
impl Unpin for DeleteExportOutput
impl UnwindSafe for DeleteExportOutput
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.