aws_sdk_iotdeviceadvisor/client/get_suite_run_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 [`GetSuiteRunReport`](crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`suite_definition_id(impl Into<String>)`](crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder::suite_definition_id) / [`set_suite_definition_id(Option<String>)`](crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder::set_suite_definition_id):<br>required: **true**<br><p>Suite definition ID of the test suite.</p><br>
7 /// - [`suite_run_id(impl Into<String>)`](crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder::suite_run_id) / [`set_suite_run_id(Option<String>)`](crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder::set_suite_run_id):<br>required: **true**<br><p>Suite run ID of the test suite run.</p><br>
8 /// - On success, responds with [`GetSuiteRunReportOutput`](crate::operation::get_suite_run_report::GetSuiteRunReportOutput) with field(s):
9 /// - [`qualification_report_download_url(Option<String>)`](crate::operation::get_suite_run_report::GetSuiteRunReportOutput::qualification_report_download_url): <p>Download URL of the qualification report.</p>
10 /// - On failure, responds with [`SdkError<GetSuiteRunReportError>`](crate::operation::get_suite_run_report::GetSuiteRunReportError)
11 pub fn get_suite_run_report(&self) -> crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder {
12 crate::operation::get_suite_run_report::builders::GetSuiteRunReportFluentBuilder::new(self.handle.clone())
13 }
14}