// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeFlowExecutionRecords`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`flow_name(impl Into<String>)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::flow_name) / [`set_flow_name(Option<String>)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::set_flow_name):<br>required: **true**<br><p>The specified name of the flow. Spaces are not allowed. Use underscores (_) or hyphens (-) only.</p><br>
/// - [`max_results(i32)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::set_max_results):<br>required: **false**<br><p>Specifies the maximum number of items that should be returned in the result set. The default for <code>maxResults</code> is 20 (for all paginated API operations).</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::set_next_token):<br>required: **false**<br><p>The pagination token for the next page of data.</p><br>
/// - On success, responds with [`DescribeFlowExecutionRecordsOutput`](crate::operation::describe_flow_execution_records::DescribeFlowExecutionRecordsOutput) with field(s):
/// - [`flow_executions(Option<Vec::<ExecutionRecord>>)`](crate::operation::describe_flow_execution_records::DescribeFlowExecutionRecordsOutput::flow_executions): <p>Returns a list of all instances when this flow was run.</p>
/// - [`next_token(Option<String>)`](crate::operation::describe_flow_execution_records::DescribeFlowExecutionRecordsOutput::next_token): <p>The pagination token for the next page of data.</p>
/// - On failure, responds with [`SdkError<DescribeFlowExecutionRecordsError>`](crate::operation::describe_flow_execution_records::DescribeFlowExecutionRecordsError)
pub fn describe_flow_execution_records(
&self,
) -> crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder {
crate::operation::describe_flow_execution_records::builders::DescribeFlowExecutionRecordsFluentBuilder::new(self.handle.clone())
}
}