aws_sdk_machinelearning/client/delete_evaluation.rs
1// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
2impl super::Client {
3 /// Constructs a fluent builder for the [`DeleteEvaluation`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`evaluation_id(impl Into<String>)`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::evaluation_id) / [`set_evaluation_id(Option<String>)`](crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::set_evaluation_id):<br>required: **true**<br><p>A user-supplied ID that uniquely identifies the <code>Evaluation</code> to delete.</p><br>
7 /// - On success, responds with [`DeleteEvaluationOutput`](crate::operation::delete_evaluation::DeleteEvaluationOutput) with field(s):
8 /// - [`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>
9 /// - On failure, responds with [`SdkError<DeleteEvaluationError>`](crate::operation::delete_evaluation::DeleteEvaluationError)
10 pub fn delete_evaluation(&self) -> crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder {
11 crate::operation::delete_evaluation::builders::DeleteEvaluationFluentBuilder::new(self.handle.clone())
12 }
13}