// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`DescribeTestCases`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder) operation.
/// This operation supports pagination; See [`into_paginator()`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::into_paginator).
///
/// - The fluent builder is configurable:
/// - [`report_arn(impl Into<String>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::report_arn) / [`set_report_arn(Option<String>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::set_report_arn):<br>required: **true**<br><p>The ARN of the report for which test cases are returned.</p><br>
/// - [`next_token(impl Into<String>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::next_token) / [`set_next_token(Option<String>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::set_next_token):<br>required: **false**<br><p>During a previous call, the maximum number of items that can be returned is the value specified in <code>maxResults</code>. If there more items in the list, then a unique string called a <i>nextToken</i> is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p><br>
/// - [`max_results(i32)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::max_results) / [`set_max_results(Option<i32>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::set_max_results):<br>required: **false**<br><p>The maximum number of paginated test cases returned per response. Use <code>nextToken</code> to iterate pages in the list of returned <code>TestCase</code> objects. The default value is 100.</p><br>
/// - [`filter(TestCaseFilter)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::filter) / [`set_filter(Option<TestCaseFilter>)`](crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::set_filter):<br>required: **false**<br><p>A <code>TestCaseFilter</code> object used to filter the returned reports.</p><br>
/// - On success, responds with [`DescribeTestCasesOutput`](crate::operation::describe_test_cases::DescribeTestCasesOutput) with field(s):
/// - [`next_token(Option<String>)`](crate::operation::describe_test_cases::DescribeTestCasesOutput::next_token): <p>During a previous call, the maximum number of items that can be returned is the value specified in <code>maxResults</code>. If there more items in the list, then a unique string called a <i>nextToken</i> is returned. To get the next batch of items in the list, call this operation again, adding the next token to the call. To get all of the items in the list, keep calling this operation with each subsequent next token that is returned, until no more next tokens are returned.</p>
/// - [`test_cases(Option<Vec::<TestCase>>)`](crate::operation::describe_test_cases::DescribeTestCasesOutput::test_cases): <p>The returned list of test cases.</p>
/// - On failure, responds with [`SdkError<DescribeTestCasesError>`](crate::operation::describe_test_cases::DescribeTestCasesError)
pub fn describe_test_cases(&self) -> crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder {
crate::operation::describe_test_cases::builders::DescribeTestCasesFluentBuilder::new(self.handle.clone())
}
}