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,