1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateACL`](crate::operation::update_acl::builders::UpdateACLFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`acl_name(impl Into<String>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::acl_name) / [`set_acl_name(Option<String>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::set_acl_name):<br>required: **true**<br><p>The name of the Access Control List</p><br>
    ///   - [`user_names_to_add(impl Into<String>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::user_names_to_add) / [`set_user_names_to_add(Option<Vec::<String>>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::set_user_names_to_add):<br>required: **false**<br><p>The list of users to add to the Access Control List</p><br>
    ///   - [`user_names_to_remove(impl Into<String>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::user_names_to_remove) / [`set_user_names_to_remove(Option<Vec::<String>>)`](crate::operation::update_acl::builders::UpdateACLFluentBuilder::set_user_names_to_remove):<br>required: **false**<br><p>The list of users to remove from the Access Control List</p><br>
    /// - On success, responds with [`UpdateAclOutput`](crate::operation::update_acl::UpdateAclOutput) with field(s):
    ///   - [`acl(Option<Acl>)`](crate::operation::update_acl::UpdateAclOutput::acl): <p>The updated Access Control List</p>
    /// - On failure, responds with [`SdkError<UpdateACLError>`](crate::operation::update_acl::UpdateACLError)
    pub fn update_acl(&self) -> crate::operation::update_acl::builders::UpdateACLFluentBuilder {
        crate::operation::update_acl::builders::UpdateACLFluentBuilder::new(self.handle.clone())
    }
}