Delete files on a S3 bucket.

Parameters:

Parameters:
See dedicated page for more information.
S3 DeleteFile removes a single file (object) from an S3 bucket using your AWS credentials.
An S3 bucket (e.g., altrnativetl1) and an IAM user with programmatic access.
Access Key ID and Secret Access Key.
IAM policy must allow at least:
s3:DeleteObject on your bucket/prefixs3:ListBucket on the bucketMinimal IAM policy (adapt to your bucket name/prefix)
{
"Version": "2012-10-17",
"Statement": [
{ "Effect": "Allow", "Action": ["s3:ListBucket"], "Resource": "arn:aws:s3:::<BUCKET-NAME>" },
{ "Effect": "Allow", "Action": ["s3:DeleteObject"], "Resource": "arn:aws:s3:::<BUCKET-NAME>/*" }
]
}
Provide the object key you want to delete.
| Column | Example | Notes |
|---|---|---|
s3FilePath |
uploads/2025/09/example.xlsx |
Exact key inside the bucket. Case-sensitive. |
Open S3 DeleteFile → Parameters and set:
Proxy
This action also works when accessing the web through a PROXY.
If your network requires it, add the proxy flag in idOptional, for example:
--proxy http://user:pass@host:port

Run the flow.
Open Process → Data.
_S3_Status. Successful deletes show OK.OK (or a NoSuchKey note if the tool performs a lookup).TemporaryRedirect
Cause: Region mismatch.
Fix: Set Bucket Region to the bucket’s real region (e.g., eu-west-3).
AccessDenied
Cause: IAM user lacks permission for this bucket/prefix, or the bucket name is wrong.
Fix: Ensure s3:DeleteObject on arn:aws:s3:::<bucket>/* and correct bucket name.
SignatureDoesNotMatch
Cause: Wrong keys, region, or clock skew.
Fix: Re-enter Access/Secret keys, confirm region, and ensure the runner’s time is correct.
RequestTimeout / networking issues
Fix: Check firewall/proxy, try adding a proxy in idOptional, and consider setting idDebug=verbose temporarily to inspect the curl trace.
