1
2
3
4
5
6
7
8
9
10
11
12
13
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`StopSuiteRun`](crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`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>
    ///   - [`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>
    /// - On success, responds with [`StopSuiteRunOutput`](crate::operation::stop_suite_run::StopSuiteRunOutput)
    /// - On failure, responds with [`SdkError<StopSuiteRunError>`](crate::operation::stop_suite_run::StopSuiteRunError)
    pub fn stop_suite_run(&self) -> crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder {
        crate::operation::stop_suite_run::builders::StopSuiteRunFluentBuilder::new(self.handle.clone())
    }
}