pub struct DeleteFileSystemRequest {
pub client_request_token: Option<String>,
pub file_system_id: String,
pub lustre_configuration: Option<DeleteFileSystemLustreConfiguration>,
pub windows_configuration: Option<DeleteFileSystemWindowsConfiguration>,
}Expand description
The request object for DeleteFileSystem operation.
Fields§
§client_request_token: Option<String>A string of up to 64 ASCII characters that Amazon FSx uses to ensure idempotent deletion. This is automatically filled on your behalf when using the AWS CLI or SDK.
file_system_id: StringThe ID of the file system you want to delete.
lustre_configuration: Option<DeleteFileSystemLustreConfiguration>§windows_configuration: Option<DeleteFileSystemWindowsConfiguration>Trait Implementations§
Source§impl Clone for DeleteFileSystemRequest
impl Clone for DeleteFileSystemRequest
Source§fn clone(&self) -> DeleteFileSystemRequest
fn clone(&self) -> DeleteFileSystemRequest
Returns a duplicate 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 DeleteFileSystemRequest
impl Debug for DeleteFileSystemRequest
Source§impl Default for DeleteFileSystemRequest
impl Default for DeleteFileSystemRequest
Source§fn default() -> DeleteFileSystemRequest
fn default() -> DeleteFileSystemRequest
Returns the “default value” for a type. Read more
Source§impl PartialEq for DeleteFileSystemRequest
impl PartialEq for DeleteFileSystemRequest
Source§impl Serialize for DeleteFileSystemRequest
impl Serialize for DeleteFileSystemRequest
impl StructuralPartialEq for DeleteFileSystemRequest
Auto Trait Implementations§
impl Freeze for DeleteFileSystemRequest
impl RefUnwindSafe for DeleteFileSystemRequest
impl Send for DeleteFileSystemRequest
impl Sync for DeleteFileSystemRequest
impl Unpin for DeleteFileSystemRequest
impl UnwindSafe for DeleteFileSystemRequest
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