put_object
Uploads an object to an S3 bucket using bucket name, object key, and content. Returns a JSON-formatted S3 response for AWS S3 integration.
Instructions
Puts an object into an S3 bucket.
Args: bucket (str): The name of the bucket. key (str): The key (name) of the object. body (str): The content of the object.
Returns: str: JSON formatted S3 response.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
body | Yes | ||
bucket | Yes | ||
key | Yes |
Input Schema (JSON Schema)
{
"properties": {
"body": {
"title": "Body",
"type": "string"
},
"bucket": {
"title": "Bucket",
"type": "string"
},
"key": {
"title": "Key",
"type": "string"
}
},
"required": [
"bucket",
"key",
"body"
],
"type": "object"
}