create_s3_source
Generate an S3 source connector for accessing data in an S3 bucket or folder, with options for recursive subfolder access. Returns detailed connector information for integration.
Instructions
Create an S3 source connector.
Args:
name: A unique name for this connector
remote_url: The S3 URI to the bucket or folder (e.g., s3://my-bucket/)
recursive: Whether to access subfolders within the bucket
Returns:
String containing the created source connector information
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | ||
recursive | No | ||
remote_url | Yes |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"title": "Name",
"type": "string"
},
"recursive": {
"default": false,
"title": "Recursive",
"type": "boolean"
},
"remote_url": {
"title": "Remote Url",
"type": "string"
}
},
"required": [
"name",
"remote_url"
],
"title": "create_s3_sourceArguments",
"type": "object"
}