From 16c302a564eb0ffc39f2ba155078a0d3934e2612 Mon Sep 17 00:00:00 2001 From: ferruzzi Date: Tue, 9 Jun 2026 16:31:58 -0700 Subject: [PATCH] Add missing template_fields to BedrockCreateEvaluationJobOperator The evaluation_config, inference_config, and output_data_config parameters were documented as templated but not included in template_fields. --- .../airflow/providers/amazon/aws/operators/bedrock.py | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/providers/amazon/src/airflow/providers/amazon/aws/operators/bedrock.py b/providers/amazon/src/airflow/providers/amazon/aws/operators/bedrock.py index bfebd3800908b..045f0f7192c69 100644 --- a/providers/amazon/src/airflow/providers/amazon/aws/operators/bedrock.py +++ b/providers/amazon/src/airflow/providers/amazon/aws/operators/bedrock.py @@ -1592,7 +1592,14 @@ class BedrockCreateEvaluationJobOperator(AwsBaseOperator[BedrockHook]): """ aws_hook_class = BedrockHook - template_fields: Sequence[str] = aws_template_fields("job_name", "role_arn", "job_description") + template_fields: Sequence[str] = aws_template_fields( + "job_name", + "role_arn", + "job_description", + "evaluation_config", + "inference_config", + "output_data_config", + ) def __init__( self,