Frends.AmazonS3.DeleteObject / 2.0.0
Summary
Removes named objects from a bucket, several in one call, and lets you decide whether an object that was already gone counts as a problem.
Typical use — cleaning up after a transfer, where treating a missing object as success keeps a re-run of the same Process from failing
Input parameters.
| Name | Type | Default | Example | Description |
|---|---|---|---|---|
| Objects | S3ObjectArray[] |
– | [ { BucketName: "ExampleBucket", Key: "ExampleKey", VersionId: "1" }, { BucketName: "ExampleBucket", Key: "ExampleKey2", VersionId: "" } ] |
Array of S3 objects to be deleted. Each object contains bucket name, key, and optional version ID. |
| ActionOnObjectNotFound | NotExistsHandler |
None |
NotExistsHandler.None |
Defines how to handle objects that don't exist:
Possible values:
|