Tutorials
General
Robots

/s3/store robot
Exports the input file into an Amazon S3 bucket.
See the tutorial on using your own s3 bucket if you are new to Amazon S3.
| Parameter | Description |
|---|---|
| bucket | The name of the bucket to export the file to. |
| path |
The path to use for storing the file. See below for a list of supported
placeholders variables. Default = "${unique_prefix}/${file.urlName}".
|
| acl |
The permissions to set for this file. You can choose from: "public-read",
"public" or "private".
Default = "public-read".
|
| key | Your Amazon Access Key ID. |
| secret | Your Amazon Secret Access Key |
Path Variables
The following is a list of placeholder variables available in the path parameter:
| Variable | Description |
|---|---|
| ${account_id} | The id of your transloadit.com account |
| ${unique_prefix} | A unique 33 character prefix you can use to avoid file name collisions. Example: "f2/d3eeeb67479f11f8b091b04f6181ad" |
| ${file.name} | The name of the stored file. |
| ${file.urlName} | The name of the stored file stripped from any characters but: A-Za-z0-9-_.. Spaces are replaced with dashes. |
| ${file.*} | Any file property that is available in the final results array. For example: "${file.meta.width}". |

