Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions airflow/providers/amazon/aws/operators/s3_bucket.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ class S3CreateBucketOperator(BaseOperator):
:type region_name: Optional[str]
"""

template_fields = ("bucket_name",)

@apply_defaults
def __init__(
self,
Expand Down Expand Up @@ -79,6 +81,8 @@ class S3DeleteBucketOperator(BaseOperator):
:type aws_conn_id: Optional[str]
"""

template_fields = ("bucket_name",)

def __init__(
self,
bucket_name: str,
Expand Down