Skip to content

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

NameTypeControl TypeDescription
Access Key IDSTRINGTEXT
Secret Access KeySTRINGTEXT
STRINGSELECT
BucketSTRINGTEXT

Actions

Get Object

Get the AWS S3 object.

Properties

NameTypeControl TypeDescription
FilenameSTRINGTEXTFilename to set for binary data.
KeySTRINGTEXTKey is most likely the name of the file.

Output

Type: FILE_ENTRY

Properties

TypeControl Type
STRINGTEXT
STRINGTEXT
STRINGTEXT
STRINGTEXT

Get URL

Get the url of an AWS S3 object.

Properties

NameTypeControl TypeDescription
Key or Entity Tag (Etag)STRINGTEXTKey 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

NameTypeControl TypeDescription
PrefixSTRINGTEXTThe prefix of an AWS S3 objects.

Output

Type: ARRAY

Properties

TypeControl 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

NameTypeControl TypeDescription
KeySTRINGTEXTKey is most likely the name of the file.
Signature DurationSTRINGTEXTTime interval until the pre-signed URL expires

Output

Type: STRING

Put Object

Store an object to AWS S3.

Properties

NameTypeControl TypeDescription
FileFILE_ENTRYFILE_ENTRYThe object property which contains a reference to the file that needs to be written to AWS S3.
KeySTRINGTEXTKey is most likely the name of the file.
ACLSTRINGSELECTThe canned ACL to apply to the object.

Output

Type: STRING