// Code generated by software.amazon.smithy.rust.codegen.smithy-rs. DO NOT EDIT.
impl super::Client {
/// Constructs a fluent builder for the [`GetABTest`](crate::operation::get_ab_test::builders::GetABTestFluentBuilder) operation.
///
/// - The fluent builder is configurable:
/// - [`ab_test_id(impl Into<String>)`](crate::operation::get_ab_test::builders::GetABTestFluentBuilder::ab_test_id) / [`set_ab_test_id(Option<String>)`](crate::operation::get_ab_test::builders::GetABTestFluentBuilder::set_ab_test_id):<br>required: **true**<br><p>The unique identifier of the A/B test to retrieve.</p><br>
/// - On success, responds with [`GetAbTestOutput`](crate::operation::get_ab_test::GetAbTestOutput) with field(s):
/// - [`ab_test_id(String)`](crate::operation::get_ab_test::GetAbTestOutput::ab_test_id): <p>The unique identifier of the A/B test.</p>
/// - [`ab_test_arn(String)`](crate::operation::get_ab_test::GetAbTestOutput::ab_test_arn): <p>The Amazon Resource Name (ARN) of the A/B test.</p>
/// - [`name(String)`](crate::operation::get_ab_test::GetAbTestOutput::name): <p>The name of the A/B test.</p>
/// - [`description(Option<String>)`](crate::operation::get_ab_test::GetAbTestOutput::description): <p>The description of the A/B test.</p>
/// - [`status(AbTestStatus)`](crate::operation::get_ab_test::GetAbTestOutput::status): <p>The current status of the A/B test.</p>
/// - [`execution_status(AbTestExecutionStatus)`](crate::operation::get_ab_test::GetAbTestOutput::execution_status): <p>The execution status indicating whether the A/B test is currently running.</p>
/// - [`gateway_arn(String)`](crate::operation::get_ab_test::GetAbTestOutput::gateway_arn): <p>The Amazon Resource Name (ARN) of the gateway used for traffic splitting.</p>
/// - [`variants(Vec::<Variant>)`](crate::operation::get_ab_test::GetAbTestOutput::variants): <p>The list of variants in the A/B test.</p>
/// - [`gateway_filter(Option<GatewayFilter>)`](crate::operation::get_ab_test::GetAbTestOutput::gateway_filter): <p>The gateway filter restricting which target paths are included.</p>
/// - [`evaluation_config(Option<AbTestEvaluationConfig>)`](crate::operation::get_ab_test::GetAbTestOutput::evaluation_config): <p>The evaluation configuration for measuring variant performance.</p>
/// - [`role_arn(Option<String>)`](crate::operation::get_ab_test::GetAbTestOutput::role_arn): <p>The IAM role ARN used by the A/B test.</p>
/// - [`current_run_id(Option<String>)`](crate::operation::get_ab_test::GetAbTestOutput::current_run_id): <p>The identifier of the current run of the A/B test.</p>
/// - [`error_details(Option<Vec::<String>>)`](crate::operation::get_ab_test::GetAbTestOutput::error_details): <p>The error details if the A/B test encountered failures.</p>
/// - [`started_at(Option<DateTime>)`](crate::operation::get_ab_test::GetAbTestOutput::started_at): <p>The timestamp when the A/B test was started.</p>
/// - [`stopped_at(Option<DateTime>)`](crate::operation::get_ab_test::GetAbTestOutput::stopped_at): <p>The timestamp when the A/B test was stopped.</p>
/// - [`max_duration_expires_at(Option<DateTime>)`](crate::operation::get_ab_test::GetAbTestOutput::max_duration_expires_at): <p>The timestamp when the A/B test will automatically expire.</p>
/// - [`created_at(DateTime)`](crate::operation::get_ab_test::GetAbTestOutput::created_at): <p>The timestamp when the A/B test was created.</p>
/// - [`updated_at(DateTime)`](crate::operation::get_ab_test::GetAbTestOutput::updated_at): <p>The timestamp when the A/B test was last updated.</p>
/// - [`results(Option<AbTestResults>)`](crate::operation::get_ab_test::GetAbTestOutput::results): <p>The statistical results of the A/B test, including per-evaluator metrics and significance analysis.</p>
/// - On failure, responds with [`SdkError<GetABTestError>`](crate::operation::get_ab_test::GetABTestError)
pub fn get_ab_test(&self) -> crate::operation::get_ab_test::builders::GetABTestFluentBuilder {
crate::operation::get_ab_test::builders::GetABTestFluentBuilder::new(self.handle.clone())
}
}