aws_sdk_bedrockagentcore/client/stop_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 [`StopBatchEvaluation`](crate::operation::stop_batch_evaluation::builders::StopBatchEvaluationFluentBuilder) operation.
4 ///
5 /// - The fluent builder is configurable:
6 /// - [`batch_evaluation_id(impl Into<String>)`](crate::operation::stop_batch_evaluation::builders::StopBatchEvaluationFluentBuilder::batch_evaluation_id) / [`set_batch_evaluation_id(Option<String>)`](crate::operation::stop_batch_evaluation::builders::StopBatchEvaluationFluentBuilder::set_batch_evaluation_id):<br>required: **true**<br><p>The unique identifier of the batch evaluation to stop.</p><br>
7 /// - On success, responds with [`StopBatchEvaluationOutput`](crate::operation::stop_batch_evaluation::StopBatchEvaluationOutput) with field(s):
8 /// - [`batch_evaluation_id(String)`](crate::operation::stop_batch_evaluation::StopBatchEvaluationOutput::batch_evaluation_id): <p>The unique identifier of the stopped batch evaluation.</p>
9 /// - [`batch_evaluation_arn(String)`](crate::operation::stop_batch_evaluation::StopBatchEvaluationOutput::batch_evaluation_arn): <p>The Amazon Resource Name (ARN) of the stopped batch evaluation.</p>
10 /// - [`status(BatchEvaluationStatus)`](crate::operation::stop_batch_evaluation::StopBatchEvaluationOutput::status): <p>The status of the batch evaluation after the stop request.</p>
11 /// - [`description(Option<String>)`](crate::operation::stop_batch_evaluation::StopBatchEvaluationOutput::description): <p>The description of the batch evaluation.</p>
12 /// - On failure, responds with [`SdkError<StopBatchEvaluationError>`](crate::operation::stop_batch_evaluation::StopBatchEvaluationError)
13 pub fn stop_batch_evaluation(&self) -> crate::operation::stop_batch_evaluation::builders::StopBatchEvaluationFluentBuilder {
14 crate::operation::stop_batch_evaluation::builders::StopBatchEvaluationFluentBuilder::new(self.handle.clone())
15 }
16}