get_signed_url
Generate a time-limited access URL for S3-compatible storage objects to securely share files with controlled expiration.
Instructions
Get a signed URL for an object
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| bucket | Yes | Bucket name | |
| expiresIn | No | URL expiration time in seconds | |
| key | Yes | Object key |
Input Schema (JSON Schema)
{
"properties": {
"bucket": {
"description": "Bucket name",
"type": "string"
},
"expiresIn": {
"description": "URL expiration time in seconds",
"type": "number"
},
"key": {
"description": "Object key",
"type": "string"
}
},
"required": [
"bucket",
"key"
],
"type": "object"
}