// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`ListFlows`](crate::operation::list_flows::builders::ListFlowsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`aws_account_id(impl Into<String>)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::aws_account_id) / [`set_aws_account_id(Option<String>)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::set_aws_account_id):<br>required: **true**<br><p>The ID of the Amazon Web Services account that contains the flow list that you are getting.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::set_next_token):<br>required: **false**<br><p>The token to request the next set of results, or null if you want to retrieve the first set.</p><br>
/// - [`max_results(i32)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::list_flows::builders::ListFlowsFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of results to be returned per request.</p><br>
/// - On success, responds with [`ListFlowsOutput`](crate::operation::list_flows::ListFlowsOutput) with field(s):
/// - [`flow_summary_list(Option<Vec::<FlowSummary>>)`](crate::operation::list_flows::ListFlowsOutput::flow_summary_list): <p>A structure that contains all of the flows in your Amazon Web Services account. This structure provides basic information about the flows.</p>
/// - [`next_token(Option<String>)`](crate::operation::list_flows::ListFlowsOutput::next_token): <p>The token for the next set of results, or null if there are no more results.</p>
/// - [`request_id(Option<String>)`](crate::operation::list_flows::ListFlowsOutput::request_id): <p>The Amazon Web Services request ID for this operation.</p>
/// - [`status(i32)`](crate::operation::list_flows::ListFlowsOutput::status): <p>The HTTP status of the request.</p>
/// - On failure, responds with [`SdkError<ListFlowsError>`](crate::operation::list_flows::ListFlowsError)
pub fn list_flows(&self) -> crate::operation::list_flows::builders::ListFlowsFluentBuilder {
crate::operation::list_flows::builders::ListFlowsFluentBuilder::new(self.handle.clone())
}
}