// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeACLs`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`acl_name(impl ::std::convert::Into<String>)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::acl_name) / [`set_acl_name(Option<String>)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::set_acl_name): <p>The name of the ACL</p>
/// - [`max_results(i32)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::set_max_results): <p>The maximum number of records to include in the response. If more records exist than the specified MaxResults value, a token is included in the response so that the remaining results can be retrieved.</p>
/// - [`next_token(impl ::std::convert::Into<String>)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::set_next_token): <p>An optional argument to pass in case the total number of records exceeds the value of MaxResults. If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. </p>
/// - On success, responds with [`DescribeAcLsOutput`](crate::operation::describe_ac_ls::DescribeAcLsOutput) with field(s):
/// - [`ac_ls(Option<Vec<Acl>>)`](crate::operation::describe_ac_ls::DescribeAcLsOutput::ac_ls): <p>The list of ACLs</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_ac_ls::DescribeAcLsOutput::next_token): <p>If nextToken is returned, there are more results available. The value of nextToken is a unique pagination token for each page. Make the call again using the returned token to retrieve the next page. Keep all other arguments unchanged. </p>
/// - On failure, responds with [`SdkError<DescribeACLsError>`](crate::operation::describe_ac_ls::DescribeACLsError)
pub fn describe_ac_ls(
&self,
) -> crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder {
crate::operation::describe_ac_ls::builders::DescribeACLsFluentBuilder::new(
self.handle.clone(),
)
}
}