aws_sdk_lexmodelsv2/client/describe_test_set_discrepancy_report.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DescribeTestSetDiscrepancyReport`](crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`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>
7 /// - On success, responds with [`DescribeTestSetDiscrepancyReportOutput`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput) with field(s):
8 /// - [`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>
9 /// - [`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>
10 /// - [`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>
11 /// - [`target(Option<TestSetDiscrepancyReportResourceTarget>)`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportOutput::target): <p>The target bot location for the test set discrepancy report.</p>
12 /// - [`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>
13 /// - [`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>
14 /// - [`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>
15 /// - [`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>
16 /// - [`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>
17 /// - On failure, responds with [`SdkError<DescribeTestSetDiscrepancyReportError>`](crate::operation::describe_test_set_discrepancy_report::DescribeTestSetDiscrepancyReportError)
18 pub fn describe_test_set_discrepancy_report(
19 &self,
20 ) -> crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder {
21 crate::operation::describe_test_set_discrepancy_report::builders::DescribeTestSetDiscrepancyReportFluentBuilder::new(self.handle.clone())
22 }
23}