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 [`DeleteAccessPoint`](crate::operation::delete_access_point::builders::DeleteAccessPointFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`access_point_id(impl Into<String>)`](crate::operation::delete_access_point::builders::DeleteAccessPointFluentBuilder::access_point_id) / [`set_access_point_id(Option<String>)`](crate::operation::delete_access_point::builders::DeleteAccessPointFluentBuilder::set_access_point_id): <p>The ID of the access point that you want to delete.</p>
    /// - On success, responds with [`DeleteAccessPointOutput`](crate::operation::delete_access_point::DeleteAccessPointOutput)
    /// - On failure, responds with [`SdkError<DeleteAccessPointError>`](crate::operation::delete_access_point::DeleteAccessPointError)
    pub fn delete_access_point(
        &self,
    ) -> crate::operation::delete_access_point::builders::DeleteAccessPointFluentBuilder {
        crate::operation::delete_access_point::builders::DeleteAccessPointFluentBuilder::new(
            self.handle.clone(),
        )
    }
}