Skip to main content

S3

S3 is an object storage service that allows you to block public access to all of your objects at the bucket or the account level with S3 Block Public Access. S3 maintains compliance programs, such as PCI-DSS, HIPAA/HITECH, FedRAMP, EU Data Protection Directive, and FISMA, to help you meet regulatory requirements.

!!! note "Credentials" You can find authentication information for this node here.

Basic Operations

  • Bucket
    • Create a bucket
    • Delete a bucket
    • Get all buckets
    • Search within a bucket
  • File
    • Copy a file
    • Delete a file
    • Download a file
    • Get all files
    • Upload a file
  • Folder
    • Create a folder
    • Delete a folder
    • Get all folders

Note: To attach a file for upload, you will need to use an additional node such as the Read Binary File node or the HTTP Request node to pass the file as a data property.

Example Usage

1. Start node

The start node exists by default when you create a new workflow.

2. HTTP Request node (GET)

  1. Enter the URL of the file in the URL field.
  2. Select 'File' from the Response Format field.
  3. Click on Execute Node to run the node.

3. S3 node (upload: file)

  1. First of all, you'll have to enter credentials for the S3 node. You can find out how to do that here.

  2. Select 'Upload' from the Operation dropdown list.

  3. Enter the bucket name in the Bucket Name field.

  4. Click on the gears icon next to the File Name field and click on Add Expression.

  5. Select the following in the Variable Selector section: Nodes > HTTP Request > Output Data > Binary > data > fileName. You can also add the following expression: {{$node["HTTP Request"].binary.data.fileName}}

  6. Click on Execute Node to run the node.

4. S node (getAll: file)

  1. Select the credentials that you entered in the previous node.
  2. Select 'Get All' from the Operation dropdown list.
  3. Enter the bucket name in the Bucket Name field.
  4. Toggle Return All to true.
  5. Click on Execute Node to run the node.

FAQs

Setting file permissions in Wasabi

When uploading files to Wasabi, permissions for the files must be set using the ACL dropdown and not the toggles.