S3
Upload, download, list, and manage S3 files
Amazon S3 is a highly scalable, secure, and durable cloud storage service provided by Amazon Web Services. It's designed to store and retrieve any amount of data from anywhere on the web, making it one of the most widely used cloud storage solutions for businesses of all sizes.
With Amazon S3, you can:
- Store unlimited data: Upload files of any size and type with virtually unlimited storage capacity
- Access from anywhere: Retrieve your files from anywhere in the world with low-latency access
- Ensure data durability: Benefit from 99.999999999% (11 9's) durability with automatic data replication
- Control access: Manage permissions and access controls with fine-grained security policies
- Scale automatically: Handle varying workloads without manual intervention or capacity planning
- Integrate seamlessly: Connect with other AWS services and third-party applications easily
- Optimize costs: Choose from multiple storage classes to optimize costs based on access patterns
In Ekinox, the S3 integration enables your agents to retrieve and access files stored in your Amazon S3 buckets using secure presigned URLs. This allows for powerful automation scenarios such as processing documents, analyzing stored data, retrieving configuration files, and accessing media content as part of your workflows. Your agents can securely fetch files from S3 without exposing your AWS credentials, making it easy to incorporate cloud-stored assets into your automation processes. This integration bridges the gap between your cloud storage and AI workflows, enabling seamless access to your stored data while maintaining security best practices through AWS's robust authentication mechanisms.
Usage Instructions
Integrate S3 into the workflow. Upload files, download objects, list bucket contents, delete objects, and copy objects between buckets. Requires AWS access key and secret access key.
Tools
s3_put_object
Upload a file to an AWS S3 bucket
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
region | string | Yes | AWS region (e.g., us-east-1) |
bucketName | string | Yes | S3 bucket name |
objectKey | string | Yes | Object key/path in S3 (e.g., folder/filename.ext) |
file | file | No | File to upload |
content | string | No | Text content to upload (alternative to file) |
contentType | string | No | Content-Type header (auto-detected from file if not provided) |
acl | string | No | Access control list (e.g., private, public-read) |
Output
Parameter | Type | Description |
---|---|---|
url | string | URL of the uploaded S3 object |
metadata | object | Upload metadata including ETag and location |
s3_get_object
Retrieve an object from an AWS S3 bucket
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
s3Uri | string | Yes | S3 Object URL |
Output
Parameter | Type | Description |
---|---|---|
url | string | Pre-signed URL for downloading the S3 object |
metadata | object | File metadata including type, size, name, and last modified date |
s3_list_objects
List objects in an AWS S3 bucket
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
region | string | Yes | AWS region (e.g., us-east-1) |
bucketName | string | Yes | S3 bucket name |
prefix | string | No | Prefix to filter objects (e.g., folder/) |
maxKeys | number | No | Maximum number of objects to return (default: 1000) |
continuationToken | string | No | Token for pagination |
Output
Parameter | Type | Description |
---|---|---|
objects | array | List of S3 objects |
s3_delete_object
Delete an object from an AWS S3 bucket
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
region | string | Yes | AWS region (e.g., us-east-1) |
bucketName | string | Yes | S3 bucket name |
objectKey | string | Yes | Object key/path to delete |
Output
Parameter | Type | Description |
---|---|---|
deleted | boolean | Whether the object was successfully deleted |
metadata | object | Deletion metadata |
s3_copy_object
Copy an object within or between AWS S3 buckets
Input
Parameter | Type | Required | Description |
---|---|---|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
region | string | Yes | AWS region (e.g., us-east-1) |
sourceBucket | string | Yes | Source bucket name |
sourceKey | string | Yes | Source object key/path |
destinationBucket | string | Yes | Destination bucket name |
destinationKey | string | Yes | Destination object key/path |
acl | string | No | Access control list for the copied object (e.g., private, public-read) |
Output
Parameter | Type | Description |
---|---|---|
url | string | URL of the copied S3 object |
metadata | object | Copy operation metadata |
Notes
- Category:
tools
- Type:
s3