AWS S3 ​
Store, retrieve, and manage objects in Amazon S3 buckets.
| Detail | Value |
|---|---|
| Category | Cloud & Infra |
| Base URL | https://s3.amazonaws.com |
| Authentication | API Key |
| Endpoints | 8 |
| Connector key | aws-s3 |
Using AWS S3 in a workflow ​
- Go to Connections and click New Connection.
- Pick AWS S3 from the marketplace.
- Enter your credentials (see Authentication above for what's expected).
- In a workflow, drop an API Call node and select this connection.
- Pick the operation you need from the Operation dropdown — see the table below.
Available Endpoints ​
| Endpoint | Summary |
|---|---|
| GET / | List all buckets |
| GET /{Bucket} | List objects in a bucket |
| PUT /{Bucket} | Create a new bucket |
| DELETE /{Bucket} | Delete a bucket |
| GET /{Bucket}/{Key} | Retrieve an object |
| PUT /{Bucket}/{Key} | Upload an object |
| DELETE /{Bucket}/{Key} | Delete an object |
| HEAD /{Bucket}/{Key} | Get object metadata |
Each endpoint has its own page with parameter details, an example
API Callnode configuration, and the response shape.