// 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 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):<br>required: **true**<br><p>The name of the resource group.</p><br>
/// - [`pattern_set_name(impl 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):<br>required: **false**<br><p>The name of the log pattern set.</p><br>
/// - [`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):<br>required: **false**<br><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><br>
/// - [`next_token(impl 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):<br>required: **false**<br><p>The token to request the next page of results.</p><br>
/// - [`account_id(impl Into<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::account_id) / [`set_account_id(Option<String>)`](crate::operation::list_log_patterns::builders::ListLogPatternsFluentBuilder::set_account_id):<br>required: **false**<br><p>The AWS account ID for the resource group owner.</p><br>
/// - 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>
/// - [`account_id(Option<String>)`](crate::operation::list_log_patterns::ListLogPatternsOutput::account_id): <p>The AWS account ID for the resource group owner.</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())
}
}