aws-sdk-efs 0.26.0

AWS SDK for Amazon Elastic File System
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteFileSystem`](crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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): <p>The ID of the file system you want to delete.</p>
    /// - On success, responds with [`DeleteFileSystemOutput`](crate::operation::delete_file_system::DeleteFileSystemOutput)
    /// - On failure, responds with [`SdkError<DeleteFileSystemError>`](crate::operation::delete_file_system::DeleteFileSystemError)
    pub fn delete_file_system(
        &self,
    ) -> crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder {
        crate::operation::delete_file_system::builders::DeleteFileSystemFluentBuilder::new(
            self.handle.clone(),
        )
    }
}