aws_s3_list_objects
List and filter objects in an S3 bucket to manage storage contents. Supports pagination and prefix-based filtering for organized data retrieval.
Instructions
List objects in an S3 bucket with optional prefix filter. Returns up to 1000 objects per call; use continuation_token for pagination.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| profile | No | AWS profile name from ~/.aws/config (e.g., 'default', 'production') | |
| region | No | AWS region override (e.g., 'us-east-1', 'sa-east-1') | |
| bucket | Yes | S3 bucket name | |
| prefix | No | Key prefix filter (e.g., 'logs/2024/') | |
| max_keys | No | Maximum number of keys to return (default: 1000) | |
| continuation_token | No | Token for paginating through results |