aws_sdk_efs/client/
delete_file_system.rs

1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3    /// Constructs a fluent builder for the [`DeleteFileSystem`](crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`file_system_id(impl Into<String>)`](crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder::file_system_id) / [`set_file_system_id(Option<String>)`](crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder::set_file_system_id):<br>required: **true**<br><p>The ID of the file system you want to delete.</p><br>
7    /// - On success, responds with [`DeleteFileSystemOutput`](crate::operation::delete_file_system::DeleteFileSystemOutput)
8    /// - On failure, responds with [`SdkError<DeleteFileSystemError>`](crate::operation::delete_file_system::DeleteFileSystemError)
9    pub fn delete_file_system(&self) -> crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder {
10        crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder::new(self.handle.clone())
11    }
12}