update_s3_destination
Modify the S3 destination connector by updating its ID and remote URL, enabling accurate data storage and retrieval within the Unstructured API MCP Server.
Instructions
Update an S3 destination connector.
Args:
destination_id: ID of the destination connector to update
remote_url: The S3 URI to the bucket or folder
Returns:
String containing the updated destination connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
destination_id | Yes | ||
recursive | No | ||
remote_url | No |
Input Schema (JSON Schema)
{
"properties": {
"destination_id": {
"title": "Destination Id",
"type": "string"
},
"recursive": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"default": null,
"title": "Recursive"
},
"remote_url": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"title": "Remote Url"
}
},
"required": [
"destination_id"
],
"title": "update_s3_destinationArguments",
"type": "object"
}