copy_object
Copy an object from one S3-compatible storage bucket to another bucket or location within Akave's storage system.
Instructions
Copy an object to another bucket/key
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destinationBucket | Yes | Destination bucket name | |
destinationKey | Yes | Destination object key | |
sourceBucket | Yes | Source bucket name | |
sourceKey | Yes | Source object key |
Input Schema (JSON Schema)
{
"properties": {
"destinationBucket": {
"description": "Destination bucket name",
"type": "string"
},
"destinationKey": {
"description": "Destination object key",
"type": "string"
},
"sourceBucket": {
"description": "Source bucket name",
"type": "string"
},
"sourceKey": {
"description": "Source object key",
"type": "string"
}
},
"required": [
"sourceBucket",
"sourceKey",
"destinationBucket",
"destinationKey"
],
"type": "object"
}