aws-sdk-bedrockagentcore 1.45.0

AWS SDK for Amazon Bedrock AgentCore
Documentation
// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
    /// Constructs a fluent builder for the [`GetBatchEvaluation`](crate::operation::get_batch_evaluation::builders::GetBatchEvaluationFluentBuilder) operation.
    ///
    /// - The fluent builder is configurable:
    ///   - [`batch_evaluation_id(impl Into<String>)`](crate::operation::get_batch_evaluation::builders::GetBatchEvaluationFluentBuilder::batch_evaluation_id) / [`set_batch_evaluation_id(Option<String>)`](crate::operation::get_batch_evaluation::builders::GetBatchEvaluationFluentBuilder::set_batch_evaluation_id):<br>required: **true**<br><p>The unique identifier of the batch evaluation to retrieve.</p><br>
    /// - On success, responds with [`GetBatchEvaluationOutput`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput) with field(s):
    ///   - [`batch_evaluation_id(String)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::batch_evaluation_id): <p>The unique identifier of the batch evaluation.</p>
    ///   - [`batch_evaluation_arn(String)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::batch_evaluation_arn): <p>The Amazon Resource Name (ARN) of the batch evaluation.</p>
    ///   - [`batch_evaluation_name(String)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::batch_evaluation_name): <p>The name of the batch evaluation.</p>
    ///   - [`status(BatchEvaluationStatus)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::status): <p>The current status of the batch evaluation.</p>
    ///   - [`created_at(DateTime)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::created_at): <p>The timestamp when the batch evaluation was created.</p>
    ///   - [`evaluators(Option<Vec::<Evaluator>>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::evaluators): <p>The list of evaluators applied during the batch evaluation.</p>
    ///   - [`data_source_config(Option<DataSourceConfig>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::data_source_config): <p>The data source configuration specifying where agent traces are pulled from.</p>
    ///   - [`output_config(Option<OutputConfig>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::output_config): <p>The output configuration specifying where evaluation results are written.</p>
    ///   - [`evaluation_results(Option<EvaluationJobResults>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::evaluation_results): <p>The aggregated evaluation results, including session completion counts and evaluator score summaries.</p>
    ///   - [`error_details(Option<Vec::<String>>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::error_details): <p>The error details if the batch evaluation encountered failures.</p>
    ///   - [`description(Option<String>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::description): <p>The description of the batch evaluation.</p>
    ///   - [`updated_at(Option<DateTime>)`](crate::operation::get_batch_evaluation::GetBatchEvaluationOutput::updated_at): <p>The timestamp when the batch evaluation was last updated.</p>
    /// - On failure, responds with [`SdkError<GetBatchEvaluationError>`](crate::operation::get_batch_evaluation::GetBatchEvaluationError)
    pub fn get_batch_evaluation(&self) -> crate::operation::get_batch_evaluation::builders::GetBatchEvaluationFluentBuilder {
        crate::operation::get_batch_evaluation::builders::GetBatchEvaluationFluentBuilder::new(self.handle.clone())
    }
}