1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeTestSetDiscrepancyReport`](crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`test_set_discrepancy_report_id(impl Into<String>)`](crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder::test_set_discrepancy_report_id) / [`set_test_set_discrepancy_report_id(Option<String>)`](crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder::set_test_set_discrepancy_report_id):<br>required: **true**<br><p>The unique identifier of the test set discrepancy report.</p><br>
    /// - On success, responds with [`DescribeTestSetDiscrepancyReportOutput`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput) with field(s):
    ///   - [`test_set_discrepancy_report_id(Option<String>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::test_set_discrepancy_report_id): <p>The unique identifier of the test set discrepancy report to describe.</p>
    ///   - [`test_set_id(Option<String>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::test_set_id): <p>The test set Id for the test set discrepancy report.</p>
    ///   - [`creation_date_time(Option<DateTime>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::creation_date_time): <p>The time and date of creation for the test set discrepancy report.</p>
    ///   - [`target(Option<TestSetDiscrepancyReportResourceTarget>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::target): <p>The target bot location for the test set discrepancy report.</p>
    ///   - [`test_set_discrepancy_report_status(Option<TestSetDiscrepancyReportStatus>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::test_set_discrepancy_report_status): <p>The status for the test set discrepancy report.</p>
    ///   - [`last_updated_data_time(Option<DateTime>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::last_updated_data_time): <p>The date and time of the last update for the test set discrepancy report.</p>
    ///   - [`test_set_discrepancy_top_errors(Option<TestSetDiscrepancyErrors>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::test_set_discrepancy_top_errors): <p>The top 200 error results from the test set discrepancy report.</p>
    ///   - [`test_set_discrepancy_raw_output_url(Option<String>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::test_set_discrepancy_raw_output_url): <p>Pre-signed Amazon S3 URL to download the test set discrepancy report.</p>
    ///   - [`failure_reasons(Option<Vec::<String>>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::failure_reasons): <p>The failure report for the test set discrepancy report generation action.</p>
    /// - On failure, responds with [`SdkError<DescribeTestSetDiscrepancyReportError>`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportError)
    pub fn describe_test_set_discrepancy_report(
        &self,
    ) -> crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder {
        crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder::new(self.handle.clone())
    }
}