Amazon S3 é um serviço de armazenamento em nuvem altamente escalável, seguro e durável fornecido pela Amazon Web Services. Foi projetado para armazenar e recuperar qualquer quantidade de dados de qualquer lugar na web, tornando-se uma das soluções de armazenamento em nuvem mais amplamente usadas por empresas de todos os portes.
Com o Amazon S3, você pode:
- Armazenar dados ilimitados: Faça upload de arquivos de qualquer tamanho e tipo com capacidade de armazenamento praticamente ilimitada
- Acessar de qualquer lugar: Recupere seus arquivos de qualquer lugar do mundo com acesso de baixa latência
- Garantir durabilidade dos dados: Beneficie-se de 99.999999999% (11 noves) de durabilidade com replicação automática de dados
- Controlar o acesso: Gerencie permissões e controles de acesso com políticas de segurança granulares
- Escalar automaticamente: Lidar com cargas de trabalho variáveis sem intervenção manual ou planejamento de capacidade
- Integrar de forma transparente: Conecte-se facilmente a outros serviços AWS e aplicações de terceiros
- Otimizar custos: Escolha entre várias classes de armazenamento para otimizar custos com base nos padrões de acesso
No Zoen, a integração do S3 permite que seus agentes recuperem e acessem arquivos armazenados nos seus buckets do Amazon S3 usando URLs pré-assinadas seguras. Isso viabiliza cenários poderosos de automação, como processar documentos, analisar dados armazenados, recuperar arquivos de configuração e acessar conteúdo de mídia como parte dos seus fluxos de trabalho. Seus agentes podem buscar arquivos do S3 com segurança sem expor suas credenciais AWS, facilitando a incorporação de assets armazenados na nuvem aos seus processos de automação. Essa integração preenche a lacuna entre o seu armazenamento em nuvem e os fluxos de trabalho de IA, permitindo acesso transparente aos seus dados armazenados enquanto mantém as melhores práticas de segurança por meio dos robustos mecanismos de autenticação da AWS.
Integrate S3 into the workflow. Upload, download, copy, and delete objects (individually or in batches), inspect object metadata, generate time-limited presigned URLs, list bucket contents, and create, list, or delete buckets. Requires AWS access key and secret access key.
Upload a file to an AWS S3 bucket
| 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 (e.g., my-bucket) |
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) |
| Parameter | Type | Description |
|---|
url | string | URL of the uploaded S3 object |
uri | string | S3 URI of the uploaded object (s3://bucket/key) |
metadata | object | Upload metadata including ETag and location |
Retrieve an object from an AWS S3 bucket
| Parameter | Type | Required | Description |
|---|
accessKeyId | string | Yes | Your AWS Access Key ID |
secretAccessKey | string | Yes | Your AWS Secret Access Key |
region | string | No | Optional region override when URL does not include region (e.g., us-east-1, eu-west-1) |
s3Uri | string | Yes | S3 Object URL (e.g., https://bucket.s3.region.amazonaws.com/path/to/file\) |
| Parameter | Type | Description |
|---|
url | string | Pre-signed URL for downloading the S3 object |
file | file | Downloaded file stored in execution files |
metadata | object | File metadata including type, size, name, and last modified date |
List objects in an AWS S3 bucket
| 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 (e.g., my-bucket) |
prefix | string | No | Prefix to filter objects (e.g., folder/, images/2024/) |
maxKeys | number | No | Maximum number of objects to return (default: 1000) |
continuationToken | string | No | Token for pagination from previous list response |
| Parameter | Type | Description |
|---|
objects | array | List of S3 objects |
↳ key | string | Object key |
↳ size | number | Object size in bytes |
↳ lastModified | string | Last modified timestamp |
↳ etag | string | Entity tag |
metadata | object | Listing metadata including pagination info |
Delete an object from an AWS S3 bucket
| 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 (e.g., my-bucket) |
objectKey | string | Yes | Object key/path to delete (e.g., folder/file.txt) |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the object was successfully deleted |
metadata | object | Deletion metadata |
Copy an object within or between AWS S3 buckets
| 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 (e.g., my-bucket) |
sourceKey | string | Yes | Source object key/path (e.g., folder/file.txt) |
destinationBucket | string | Yes | Destination bucket name (e.g., my-other-bucket) |
destinationKey | string | Yes | Destination object key/path (e.g., backup/file.txt) |
acl | string | No | Access control list for the copied object (e.g., private, public-read) |
| Parameter | Type | Description |
|---|
url | string | URL of the copied S3 object |
uri | string | S3 URI of the copied object (s3://bucket/key) |
metadata | object | Copy operation metadata |
List the S3 buckets owned by the authenticated AWS account
| 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 to address the request to (e.g., us-east-1) |
prefix | string | No | Limit the response to bucket names that begin with this prefix |
maxBuckets | number | No | Maximum number of buckets to return (1-10000) |
continuationToken | string | No | Token for pagination from a previous list buckets response |
| Parameter | Type | Description |
|---|
buckets | array | List of S3 buckets owned by the account |
↳ name | string | Bucket name |
↳ creationDate | string | Bucket creation timestamp |
↳ region | string | AWS region where the bucket is located |
metadata | object | Listing metadata including owner and pagination info |
Retrieve metadata for an S3 object without downloading its body
| 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 (e.g., my-bucket) |
objectKey | string | Yes | Object key/path to inspect (e.g., folder/file.txt) |
versionId | string | No | Specific object version ID to inspect (for versioned buckets) |
| Parameter | Type | Description |
|---|
exists | boolean | Whether the object exists and was reachable |
metadata | object | Object metadata including size, content type, ETag, and last modified date |
Create a new AWS S3 bucket in the specified region
| 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 to create the bucket in (e.g., us-east-1) |
bucketName | string | Yes | Name for the new S3 bucket (must be globally unique) |
acl | string | No | Canned ACL for the bucket (e.g., private, public-read) |
| Parameter | Type | Description |
|---|
metadata | object | Created bucket metadata including name and location |
Delete an empty AWS S3 bucket
| 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 where the bucket is located (e.g., us-east-1) |
bucketName | string | Yes | Name of the S3 bucket to delete (must be empty) |
| Parameter | Type | Description |
|---|
deleted | boolean | Whether the bucket was successfully deleted |
metadata | object | Deletion metadata including bucket name |
Generate a time-limited presigned URL to download or upload an S3 object
| 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 where the bucket is located (e.g., us-east-1) |
bucketName | string | Yes | S3 bucket name (e.g., my-bucket) |
objectKey | string | Yes | Object key/path for the presigned URL (e.g., folder/file.txt) |
method | string | Yes | Operation the URL grants: get (download) or put (upload) |
expiresIn | number | No | URL validity in seconds (1-604800, default 3600) |
contentType | string | No | Content-Type the upload must use (only applies to put URLs) |
| Parameter | Type | Description |
|---|
url | string | The generated presigned URL |
metadata | object | Presigned URL metadata including method and expiration |
Delete multiple objects from an AWS S3 bucket in a single batch request
| 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 (e.g., my-bucket) |
keys | json | Yes | Array of object keys to delete (e.g., ["a.txt", "folder/b.txt"]). Max 1000. |
quiet | boolean | No | Return only deletion errors, omitting successfully deleted keys |
| Parameter | Type | Description |
|---|
deleted | array | Objects that were successfully deleted |
↳ key | string | Deleted object key |
↳ versionId | string | Version ID of the deleted object |
↳ deleteMarker | boolean | Whether a delete marker was created |
errors | array | Objects that failed to delete |
↳ key | string | Object key that failed |
↳ code | string | Error code |
↳ message | string | Error message |
metadata | object | Batch deletion summary including counts |