aws_sdk_iotdeviceadvisor/client/stop_suite_run.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 [`StopSuiteRun`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`suite_definition_id(impl Into<String>)`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::suite_definition_id) / [`set_suite_definition_id(Option<String>)`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::set_suite_definition_id):<br>required: **true**<br><p>Suite definition ID of the test suite run to be stopped.</p><br>
7 /// - [`suite_run_id(impl Into<String>)`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::suite_run_id) / [`set_suite_run_id(Option<String>)`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::set_suite_run_id):<br>required: **true**<br><p>Suite run ID of the test suite run to be stopped.</p><br>
8 /// - On success, responds with [`StopSuiteRunOutput`](crate::operation::stop_suite_run::StopSuiteRunOutput)
9 /// - On failure, responds with [`SdkError<StopSuiteRunError>`](crate::operation::stop_suite_run::StopSuiteRunError)
10 pub fn stop_suite_run(&self) -> crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder {
11 crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::new(self.handle.clone())
12 }
13}