Skip to main content

aws_sdk_bedrockagentcore/client/
delete_batch_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 [`DeleteBatchEvaluation`](crate::operation::delete_batch_evaluation::builders::DeleteBatchEvaluationFluentBuilder) operation.
4    ///
5    /// - The fluent builder is configurable:
6    ///   - [`batch_evaluation_id(impl Into<String>)`](crate::operation::delete_batch_evaluation::builders::DeleteBatchEvaluationFluentBuilder::batch_evaluation_id) / [`set_batch_evaluation_id(Option<String>)`](crate::operation::delete_batch_evaluation::builders::DeleteBatchEvaluationFluentBuilder::set_batch_evaluation_id):<br>required: **true**<br><p>The unique identifier of the batch evaluation to delete.</p><br>
7    /// - On success, responds with [`DeleteBatchEvaluationOutput`](crate::operation::delete_batch_evaluation::DeleteBatchEvaluationOutput) with field(s):
8    ///   - [`batch_evaluation_id(String)`](crate::operation::delete_batch_evaluation::DeleteBatchEvaluationOutput::batch_evaluation_id): <p>The unique identifier of the deleted batch evaluation.</p>
9    ///   - [`batch_evaluation_arn(String)`](crate::operation::delete_batch_evaluation::DeleteBatchEvaluationOutput::batch_evaluation_arn): <p>The Amazon Resource Name (ARN) of the deleted batch evaluation.</p>
10    ///   - [`status(BatchEvaluationStatus)`](crate::operation::delete_batch_evaluation::DeleteBatchEvaluationOutput::status): <p>The status of the batch evaluation deletion operation.</p>
11    /// - On failure, responds with [`SdkError<DeleteBatchEvaluationError>`](crate::operation::delete_batch_evaluation::DeleteBatchEvaluationError)
12    pub fn delete_batch_evaluation(&self) -> crate::operation::delete_batch_evaluation::builders::DeleteBatchEvaluationFluentBuilder {
13        crate::operation::delete_batch_evaluation::builders::DeleteBatchEvaluationFluentBuilder::new(self.handle.clone())
14    }
15}