S3 or S3-compatible storage for WebDataset tar archives. Supports custom endpoints for MinIO, Cloudflare R2, and other S3-compatible services.
Properties
bucket
string
Required
S3 bucket name
maxLength: 255 bytesendpoint
string
uri
Optional
Custom S3-compatible endpoint URL (e.g., for MinIO, Cloudflare R2). Omit for standard AWS S3.
maxLength: 500 bytesregion
string
Optional
AWS region (e.g., 'us-east-1'). Optional for S3-compatible services.
maxLength: 50 bytesshards
array
of ref#shardEntry
Required
Array of shard entries with object key and integrity checksum
minLength: 1 itemsView raw schema
{
"type": "object",
"required": [
"bucket",
"shards"
],
"properties": {
"bucket": {
"type": "string",
"maxLength": 255,
"description": "S3 bucket name"
},
"region": {
"type": "string",
"maxLength": 50,
"description": "AWS region (e.g., 'us-east-1'). Optional for S3-compatible services."
},
"shards": {
"type": "array",
"items": {
"ref": "#shardEntry",
"type": "ref"
},
"minLength": 1,
"description": "Array of shard entries with object key and integrity checksum"
},
"endpoint": {
"type": "string",
"format": "uri",
"maxLength": 500,
"description": "Custom S3-compatible endpoint URL (e.g., for MinIO, Cloudflare R2). Omit for standard AWS S3."
}
},
"description": "S3 or S3-compatible storage for WebDataset tar archives. Supports custom endpoints for MinIO, Cloudflare R2, and other S3-compatible services."
}