get_object
Retrieve object content from an S3-compatible storage bucket by specifying the bucket name and object key, enabling access to stored files and data.
Instructions
Get object content from a bucket
Input Schema
Name | Required | Description | Default |
---|---|---|---|
bucket | Yes | Bucket name | |
key | Yes | Object key |
Input Schema (JSON Schema)
{
"properties": {
"bucket": {
"description": "Bucket name",
"type": "string"
},
"key": {
"description": "Object key",
"type": "string"
}
},
"required": [
"bucket",
"key"
],
"type": "object"
}