Skip to content

Commit

Permalink
fix: add s3_output parameter to athena.delete_from_iceberg_table (#2829)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeonLuttenberger committed May 22, 2024
1 parent 7e83b89 commit a7396e8
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions awswrangler/athena/_write_iceberg.py
Original file line number Diff line number Diff line change
Expand Up @@ -556,6 +556,7 @@ def delete_from_iceberg_table(
temp_path: str | None = None,
keep_files: bool = True,
data_source: str | None = None,
s3_output: str | None = None,
workgroup: str = "primary",
encryption: str | None = None,
kms_key: str | None = None,
Expand Down Expand Up @@ -586,6 +587,8 @@ def delete_from_iceberg_table(
Whether staging files produced by Athena are retained. ``True`` by default.
data_source: str, optional
The AWS KMS key ID or alias used to encrypt the data.
s3_output: str, optional
Amazon S3 path used for query execution.
workgroup: str, optional
Athena workgroup name.
encryption: str, optional
Expand Down Expand Up @@ -674,6 +677,7 @@ def delete_from_iceberg_table(
wg_config=wg_config,
database=database,
data_source=data_source,
s3_output=s3_output,
encryption=encryption,
kms_key=kms_key,
boto3_session=boto3_session,
Expand Down

0 comments on commit a7396e8

Please sign in to comment.