#[non_exhaustive]pub struct DeleteExportOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteExportOutput
.
Implementations§
source§impl DeleteExportOutputBuilder
impl DeleteExportOutputBuilder
sourcepub fn export_id(self, input: impl Into<String>) -> Self
pub fn export_id(self, input: impl Into<String>) -> Self
The unique identifier of the deleted export.
sourcepub fn set_export_id(self, input: Option<String>) -> Self
pub fn set_export_id(self, input: Option<String>) -> Self
The unique identifier of the deleted export.
sourcepub fn get_export_id(&self) -> &Option<String>
pub fn get_export_id(&self) -> &Option<String>
The unique identifier of the deleted export.
sourcepub fn export_status(self, input: ExportStatus) -> Self
pub fn export_status(self, input: ExportStatus) -> Self
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.
sourcepub fn set_export_status(self, input: Option<ExportStatus>) -> Self
pub fn set_export_status(self, input: Option<ExportStatus>) -> Self
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.
sourcepub fn get_export_status(&self) -> &Option<ExportStatus>
pub fn get_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.
sourcepub fn build(self) -> DeleteExportOutput
pub fn build(self) -> DeleteExportOutput
Consumes the builder and constructs a DeleteExportOutput
.
Trait Implementations§
source§impl Clone for DeleteExportOutputBuilder
impl Clone for DeleteExportOutputBuilder
source§fn clone(&self) -> DeleteExportOutputBuilder
fn clone(&self) -> DeleteExportOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for DeleteExportOutputBuilder
impl Debug for DeleteExportOutputBuilder
source§impl Default for DeleteExportOutputBuilder
impl Default for DeleteExportOutputBuilder
source§fn default() -> DeleteExportOutputBuilder
fn default() -> DeleteExportOutputBuilder
impl StructuralPartialEq for DeleteExportOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteExportOutputBuilder
impl RefUnwindSafe for DeleteExportOutputBuilder
impl Send for DeleteExportOutputBuilder
impl Sync for DeleteExportOutputBuilder
impl Unpin for DeleteExportOutputBuilder
impl UnwindSafe for DeleteExportOutputBuilder
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§unsafe fn clone_to_uninit(&self, dst: *mut T)
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