1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteACL`](crate::operation::delete_acl::builders::DeleteACLFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    /// - On success, responds with [`DeleteAclOutput`](crate::operation::delete_acl::DeleteAclOutput) with field(s):
    ///   - [`acl(Option<Acl>)`](crate::operation::delete_acl::DeleteAclOutput::acl): <p>The Access Control List object that has been deleted.</p>
    /// - On failure, responds with [`SdkError<DeleteACLError>`](crate::operation::delete_acl::DeleteACLError)
    pub fn delete_acl(&self) -> crate::operation::delete_acl::builders::DeleteACLFluentBuilder {
        crate::operation::delete_acl::builders::DeleteACLFluentBuilder::new(self.handle.clone())
    }
}