1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetExperiment`](crate::operation::get_experiment::builders::GetExperimentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`project(impl Into<String>)`](crate::operation::get_experiment::builders::GetExperimentFluentBuilder::project) / [`set_project(Option<String>)`](crate::operation::get_experiment::builders::GetExperimentFluentBuilder::set_project):<br>required: **true**<br><p>The name or ARN of the project that contains the experiment.</p><br>
    ///   - [`experiment(impl Into<String>)`](crate::operation::get_experiment::builders::GetExperimentFluentBuilder::experiment) / [`set_experiment(Option<String>)`](crate::operation::get_experiment::builders::GetExperimentFluentBuilder::set_experiment):<br>required: **true**<br><p>The name of the experiment that you want to see the details of.</p><br>
    /// - On success, responds with [`GetExperimentOutput`](crate::operation::get_experiment::GetExperimentOutput) with field(s):
    ///   - [`experiment(Option<Experiment>)`](crate::operation::get_experiment::GetExperimentOutput::experiment): <p>A structure containing the configuration details of the experiment.</p>
    /// - On failure, responds with [`SdkError<GetExperimentError>`](crate::operation::get_experiment::GetExperimentError)
    pub fn get_experiment(&self) -> crate::operation::get_experiment::builders::GetExperimentFluentBuilder {
        crate::operation::get_experiment::builders::GetExperimentFluentBuilder::new(self.handle.clone())
    }
}