1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`DeleteEvaluation`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`evaluation_id(impl ::std::convert::Into<String>)`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::evaluation_id) / [`set_evaluation_id(Option<String>)`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::set_evaluation_id): <p>A user-supplied ID that uniquely identifies the <code>Evaluation</code> to delete.</p>
    /// - On success, responds with [`DeleteEvaluationOutput`](crate::operation::delete_evaluation::DeleteEvaluationOutput) with field(s):
    ///   - [`evaluation_id(Option<String>)`](crate::operation::delete_evaluation::DeleteEvaluationOutput::evaluation_id): <p>A user-supplied ID that uniquely identifies the <code>Evaluation</code>. This value should be identical to the value of the <code>EvaluationId</code> in the request.</p>
    /// - On failure, responds with [`SdkError<DeleteEvaluationError>`](crate::operation::delete_evaluation::DeleteEvaluationError)
    pub fn delete_evaluation(
        &self,
    ) -> crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder {
        crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::new(
            self.handle.clone(),
        )
    }
}