1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`UpdateEvaluation`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`evaluation_id(impl ::std::convert::Into<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::evaluation_id) / [`set_evaluation_id(Option<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::set_evaluation_id): <p>The ID assigned to the <code>Evaluation</code> during creation.</p>
    ///   - [`evaluation_name(impl ::std::convert::Into<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::evaluation_name) / [`set_evaluation_name(Option<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::set_evaluation_name): <p>A new user-supplied name or description of the <code>Evaluation</code> that will replace the current content. </p>
    /// - On success, responds with [`UpdateEvaluationOutput`](crate::operation::update_evaluation::UpdateEvaluationOutput) with field(s):
    ///   - [`evaluation_id(Option<String>)`](crate::operation::update_evaluation::UpdateEvaluationOutput::evaluation_id): <p>The ID assigned to the <code>Evaluation</code> during creation. This value should be identical to the value of the <code>Evaluation</code> in the request.</p>
    /// - On failure, responds with [`SdkError<UpdateEvaluationError>`](crate::operation::update_evaluation::UpdateEvaluationError)
    pub fn update_evaluation(
        &self,
    ) -> crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder {
        crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}