fetch_headers
Retrieve headers and metadata for a specific object stored in an S3-compatible bucket, providing essential information about the object's properties without downloading its content.
Instructions
Fetch headers/metadata for an object
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"
}