aws_sdk_memorydb/client/
delete_acl.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 [`DeleteACL`](crate::operation::delete_acl::builders::DeleteACLFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`acl_name(impl Into<String>)`](crate::operation::delete_acl::builders::DeleteACLFluentBuilder::acl_name) / [`set_acl_name(Option<String>)`](crate::operation::delete_acl::builders::DeleteACLFluentBuilder::set_acl_name):<br>required: **true**<br><p>The name of the Access Control List to delete.</p><br>
7    /// - On success, responds with [`DeleteAclOutput`](crate::operation::delete_acl::DeleteAclOutput) with field(s):
8    ///   - [`acl(Option<Acl>)`](crate::operation::delete_acl::DeleteAclOutput::acl): <p>The Access Control List object that has been deleted.</p>
9    /// - On failure, responds with [`SdkError<DeleteACLError>`](crate::operation::delete_acl::DeleteACLError)
10    pub fn delete_acl(&self) -> crate::operation::delete_acl::builders::DeleteACLFluentBuilder {
11        crate::operation::delete_acl::builders::DeleteACLFluentBuilder::new(self.handle.clone())
12    }
13}