AWS S3
Reference
AWS S3 is a simple object storage service provided by Amazon Web Services.
Categories: [developer-tools, file-storage]
Version: 1
Connections
Version: 1
null
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Access Key ID | STRING | TEXT | |
Secret Access Key | STRING | TEXT | |
STRING | SELECT | ||
Bucket | STRING | TEXT |
Actions
Get Object
Get the AWS S3 object.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Filename | STRING | TEXT | Filename to set for binary data. |
Key | STRING | TEXT | Key is most likely the name of the file. |
Output
Type: FILE_ENTRY
Properties
Type | Control Type |
---|---|
STRING | TEXT |
STRING | TEXT |
STRING | TEXT |
STRING | TEXT |
Get URL
Get the url of an AWS S3 object.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Key or Entity Tag (Etag) | STRING | TEXT | Key is most likely the name of the file. |
Output
Type: STRING
List Objects
Get the list AWS S3 objects. Every object needs to have read permission in order to be seen.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Prefix | STRING | TEXT | The prefix of an AWS S3 objects. |
Output
Type: ARRAY
Properties
Type | Control Type |
---|---|
{STRING(key), STRING(suffix), STRING(uri)} | OBJECT_BUILDER |
Get Pre-signed Object
You can share an object with a pre-signed URL for up to 12 hours or until your session expires.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
Key | STRING | TEXT | Key is most likely the name of the file. |
Signature Duration | STRING | TEXT | Time interval until the pre-signed URL expires |
Output
Type: STRING
Put Object
Store an object to AWS S3.
Properties
Name | Type | Control Type | Description |
---|---|---|---|
File | FILE_ENTRY | FILE_ENTRY | The object property which contains a reference to the file that needs to be written to AWS S3. |
Key | STRING | TEXT | Key is most likely the name of the file. |
ACL | STRING | SELECT | The canned ACL to apply to the object. |
Output
Type: STRING