#[non_exhaustive]pub struct DeleteFileSystemOutputBuilder { /* private fields */ }
Expand description
A builder for DeleteFileSystemOutput
.
Implementations§
source§impl DeleteFileSystemOutputBuilder
impl DeleteFileSystemOutputBuilder
sourcepub fn file_system_id(self, input: impl Into<String>) -> Self
pub fn file_system_id(self, input: impl Into<String>) -> Self
The ID of the file system that's being deleted.
sourcepub fn set_file_system_id(self, input: Option<String>) -> Self
pub fn set_file_system_id(self, input: Option<String>) -> Self
The ID of the file system that's being deleted.
sourcepub fn get_file_system_id(&self) -> &Option<String>
pub fn get_file_system_id(&self) -> &Option<String>
The ID of the file system that's being deleted.
sourcepub fn lifecycle(self, input: FileSystemLifecycle) -> Self
pub fn lifecycle(self, input: FileSystemLifecycle) -> Self
The file system lifecycle for the deletion request. If the DeleteFileSystem
operation is successful, this status is DELETING
.
sourcepub fn set_lifecycle(self, input: Option<FileSystemLifecycle>) -> Self
pub fn set_lifecycle(self, input: Option<FileSystemLifecycle>) -> Self
The file system lifecycle for the deletion request. If the DeleteFileSystem
operation is successful, this status is DELETING
.
sourcepub fn get_lifecycle(&self) -> &Option<FileSystemLifecycle>
pub fn get_lifecycle(&self) -> &Option<FileSystemLifecycle>
The file system lifecycle for the deletion request. If the DeleteFileSystem
operation is successful, this status is DELETING
.
sourcepub fn windows_response(self, input: DeleteFileSystemWindowsResponse) -> Self
pub fn windows_response(self, input: DeleteFileSystemWindowsResponse) -> Self
The response object for the Microsoft Windows file system used in the DeleteFileSystem
operation.
sourcepub fn set_windows_response(
self,
input: Option<DeleteFileSystemWindowsResponse>
) -> Self
pub fn set_windows_response( self, input: Option<DeleteFileSystemWindowsResponse> ) -> Self
The response object for the Microsoft Windows file system used in the DeleteFileSystem
operation.
sourcepub fn get_windows_response(&self) -> &Option<DeleteFileSystemWindowsResponse>
pub fn get_windows_response(&self) -> &Option<DeleteFileSystemWindowsResponse>
The response object for the Microsoft Windows file system used in the DeleteFileSystem
operation.
sourcepub fn lustre_response(self, input: DeleteFileSystemLustreResponse) -> Self
pub fn lustre_response(self, input: DeleteFileSystemLustreResponse) -> Self
The response object for the Amazon FSx for Lustre file system being deleted in the DeleteFileSystem
operation.
sourcepub fn set_lustre_response(
self,
input: Option<DeleteFileSystemLustreResponse>
) -> Self
pub fn set_lustre_response( self, input: Option<DeleteFileSystemLustreResponse> ) -> Self
The response object for the Amazon FSx for Lustre file system being deleted in the DeleteFileSystem
operation.
sourcepub fn get_lustre_response(&self) -> &Option<DeleteFileSystemLustreResponse>
pub fn get_lustre_response(&self) -> &Option<DeleteFileSystemLustreResponse>
The response object for the Amazon FSx for Lustre file system being deleted in the DeleteFileSystem
operation.
sourcepub fn open_zfs_response(self, input: DeleteFileSystemOpenZfsResponse) -> Self
pub fn open_zfs_response(self, input: DeleteFileSystemOpenZfsResponse) -> Self
The response object for the OpenZFS file system that's being deleted in the DeleteFileSystem
operation.
sourcepub fn set_open_zfs_response(
self,
input: Option<DeleteFileSystemOpenZfsResponse>
) -> Self
pub fn set_open_zfs_response( self, input: Option<DeleteFileSystemOpenZfsResponse> ) -> Self
The response object for the OpenZFS file system that's being deleted in the DeleteFileSystem
operation.
sourcepub fn get_open_zfs_response(&self) -> &Option<DeleteFileSystemOpenZfsResponse>
pub fn get_open_zfs_response(&self) -> &Option<DeleteFileSystemOpenZfsResponse>
The response object for the OpenZFS file system that's being deleted in the DeleteFileSystem
operation.
sourcepub fn build(self) -> DeleteFileSystemOutput
pub fn build(self) -> DeleteFileSystemOutput
Consumes the builder and constructs a DeleteFileSystemOutput
.
Trait Implementations§
source§impl Clone for DeleteFileSystemOutputBuilder
impl Clone for DeleteFileSystemOutputBuilder
source§fn clone(&self) -> DeleteFileSystemOutputBuilder
fn clone(&self) -> DeleteFileSystemOutputBuilder
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Default for DeleteFileSystemOutputBuilder
impl Default for DeleteFileSystemOutputBuilder
source§fn default() -> DeleteFileSystemOutputBuilder
fn default() -> DeleteFileSystemOutputBuilder
source§impl PartialEq for DeleteFileSystemOutputBuilder
impl PartialEq for DeleteFileSystemOutputBuilder
source§fn eq(&self, other: &DeleteFileSystemOutputBuilder) -> bool
fn eq(&self, other: &DeleteFileSystemOutputBuilder) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for DeleteFileSystemOutputBuilder
Auto Trait Implementations§
impl Freeze for DeleteFileSystemOutputBuilder
impl RefUnwindSafe for DeleteFileSystemOutputBuilder
impl Send for DeleteFileSystemOutputBuilder
impl Sync for DeleteFileSystemOutputBuilder
impl Unpin for DeleteFileSystemOutputBuilder
impl UnwindSafe for DeleteFileSystemOutputBuilder
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> 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