This is an automated email from the ASF dual-hosted git repository.
vincbeck pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/airflow.git
The following commit(s) were added to refs/heads/main by this push:
new d93a93849db Add missing template_fields to
BedrockCreateEvaluationJobOperator (#68310)
d93a93849db is described below
commit d93a93849db53e8ee5046c42dfa8744be57c05d3
Author: D. Ferruzzi <[email protected]>
AuthorDate: Wed Jun 10 06:44:13 2026 -0700
Add missing template_fields to BedrockCreateEvaluationJobOperator (#68310)
The evaluation_config, inference_config, and output_data_config parameters
were documented as templated but not included in template_fields.
---
.../amazon/src/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 bfebd380090..045f0f7192c 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,