Taragolis commented on issue #35259:
URL: https://github.com/apache/airflow/issues/35259#issuecomment-1784993978

   This might be blocked by https://github.com/apache/airflow/issues/29069 .
   
   
   In general you could extend `S3CreateObjectOperator.template_fields` by 
create custom Operator with [required 
template_fields](https://airflow.apache.org/docs/apache-airflow/stable/howto/custom-operator.html#templating)
   
   ```python
   from airflow.providers.amazon.aws.operators.s3 import S3CreateObjectOperator
   
   class AwesomeS3CreateObjectOperator:
       template_fields: ("aws_conn_id", *S3CreateObjectOperator.template_fields)
   
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscr...@airflow.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to