1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DescribeExperiment`](crate::operation::describe_experiment::builders::DescribeExperimentFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`experiment_name(impl Into<String>)`](crate::operation::describe_experiment::builders::DescribeExperimentFluentBuilder::experiment_name) / [`set_experiment_name(Option<String>)`](crate::operation::describe_experiment::builders::DescribeExperimentFluentBuilder::set_experiment_name):<br>required: **true**<br><p>The name of the experiment to describe.</p><br>
    /// - On success, responds with [`DescribeExperimentOutput`](crate::operation::describe_experiment::DescribeExperimentOutput) with field(s):
    ///   - [`experiment_name(Option<String>)`](crate::operation::describe_experiment::DescribeExperimentOutput::experiment_name): <p>The name of the experiment.</p>
    ///   - [`experiment_arn(Option<String>)`](crate::operation::describe_experiment::DescribeExperimentOutput::experiment_arn): <p>The Amazon Resource Name (ARN) of the experiment.</p>
    ///   - [`display_name(Option<String>)`](crate::operation::describe_experiment::DescribeExperimentOutput::display_name): <p>The name of the experiment as displayed. If <code>DisplayName</code> isn't specified, <code>ExperimentName</code> is displayed.</p>
    ///   - [`source(Option<ExperimentSource>)`](crate::operation::describe_experiment::DescribeExperimentOutput::source): <p>The Amazon Resource Name (ARN) of the source and, optionally, the type.</p>
    ///   - [`description(Option<String>)`](crate::operation::describe_experiment::DescribeExperimentOutput::description): <p>The description of the experiment.</p>
    ///   - [`creation_time(Option<DateTime>)`](crate::operation::describe_experiment::DescribeExperimentOutput::creation_time): <p>When the experiment was created.</p>
    ///   - [`created_by(Option<UserContext>)`](crate::operation::describe_experiment::DescribeExperimentOutput::created_by): <p>Who created the experiment.</p>
    ///   - [`last_modified_time(Option<DateTime>)`](crate::operation::describe_experiment::DescribeExperimentOutput::last_modified_time): <p>When the experiment was last modified.</p>
    ///   - [`last_modified_by(Option<UserContext>)`](crate::operation::describe_experiment::DescribeExperimentOutput::last_modified_by): <p>Who last modified the experiment.</p>
    /// - On failure, responds with [`SdkError<DescribeExperimentError>`](crate::operation::describe_experiment::DescribeExperimentError)
    pub fn describe_experiment(&self) -> crate::operation::describe_experiment::builders::DescribeExperimentFluentBuilder {
        crate::operation::describe_experiment::builders::DescribeExperimentFluentBuilder::new(self.handle.clone())
    }
}