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 [`StopExperiment`](crate::operation::stop_experiment::builders::StopExperimentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`id(impl Into<String>)`](crate::operation::stop_experiment::builders::StopExperimentFluentBuilder::id) / [`set_id(Option<String>)`](crate::operation::stop_experiment::builders::StopExperimentFluentBuilder::set_id):<br>required: **true**<br><p>The ID of the experiment.</p><br>
    /// - On success, responds with [`StopExperimentOutput`](crate::operation::stop_experiment::StopExperimentOutput) with field(s):
    ///   - [`experiment(Option<Experiment>)`](crate::operation::stop_experiment::StopExperimentOutput::experiment): <p>Information about the experiment.</p>
    /// - On failure, responds with [`SdkError<StopExperimentError>`](crate::operation::stop_experiment::StopExperimentError)
    pub fn stop_experiment(&self) -> crate::operation::stop_experiment::builders::StopExperimentFluentBuilder {
        crate::operation::stop_experiment::builders::StopExperimentFluentBuilder::new(self.handle.clone())
    }
}