// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListLogPatterns`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`resource_group_name(impl ::std::convert::Into<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::resource_group_name) / [`set_resource_group_name(Option<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::set_resource_group_name): <p>The name of the resource group.</p>
/// - [`pattern_set_name(impl ::std::convert::Into<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::pattern_set_name) / [`set_pattern_set_name(Option<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::set_pattern_set_name): <p>The name of the log pattern set.</p>
/// - [`max_results(i32)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::set_max_results): <p>The maximum number of results to return in a single call. To retrieve the remaining results, make another call with the returned <code>NextToken</code> value.</p>
/// - [`next_token(impl ::std::convert::Into<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::set_next_token): <p>The token to request the next page of results.</p>
/// - On success, responds with [`ListLogPatternsOutput`](crate::operation::list_log_patterns::ListLogPatternsOutput) with field(s):
/// - [`resource_group_name(Option<String>)`](crate::operation::list_log_patterns::ListLogPatternsOutput::resource_group_name): <p>The name of the resource group.</p>
/// - [`log_patterns(Option<Vec<LogPattern>>)`](crate::operation::list_log_patterns::ListLogPatternsOutput::log_patterns): <p>The list of log patterns.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_log_patterns::ListLogPatternsOutput::next_token): <p>The token used to retrieve the next page of results. This value is <code>null</code> when there are no more results to return. </p>
/// - On failure, responds with [`SdkError<ListLogPatternsError>`](crate::operation::list_log_patterns::ListLogPatternsError)
pub fn list_log_patterns(&self) -> crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder {
crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::new(self.handle.clone())
}
}