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 [`UpdateEvaluation`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`evaluation_id(impl Into<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::evaluation_id) / [`set_evaluation_id(Option<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::set_evaluation_id):<br>required: **true**<br><p>The ID assigned to the <code>Evaluation</code> during creation.</p><br>
    ///   - [`evaluation_name(impl Into<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::evaluation_name) / [`set_evaluation_name(Option<String>)`](crate::operation::update_evaluation::builders::UpdateEvaluationFluentBuilder::set_evaluation_name):<br>required: **true**<br><p>A new user-supplied name or description of the <code>Evaluation</code> that will replace the current content. </p><br>
    /// - 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())
    }
}