Skip to content

Commit a7396e8

Browse files
fix: add s3_output parameter to athena.delete_from_iceberg_table (#2829)
1 parent 7e83b89 commit a7396e8

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

awswrangler/athena/_write_iceberg.py

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -556,6 +556,7 @@ def delete_from_iceberg_table(
556556
temp_path: str | None = None,
557557
keep_files: bool = True,
558558
data_source: str | None = None,
559+
s3_output: str | None = None,
559560
workgroup: str = "primary",
560561
encryption: str | None = None,
561562
kms_key: str | None = None,
@@ -586,6 +587,8 @@ def delete_from_iceberg_table(
586587
Whether staging files produced by Athena are retained. ``True`` by default.
587588
data_source: str, optional
588589
The AWS KMS key ID or alias used to encrypt the data.
590+
s3_output: str, optional
591+
Amazon S3 path used for query execution.
589592
workgroup: str, optional
590593
Athena workgroup name.
591594
encryption: str, optional
@@ -674,6 +677,7 @@ def delete_from_iceberg_table(
674677
wg_config=wg_config,
675678
database=database,
676679
data_source=data_source,
680+
s3_output=s3_output,
677681
encryption=encryption,
678682
kms_key=kms_key,
679683
boto3_session=boto3_session,

0 commit comments

Comments
 (0)