{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://api.sentinel-hub.com/schemas/S3BucketInfoTemplated", "title": "S3BucketInfoTemplated", "type": "object", "required": [ "url" ], "properties": { "url": { "type": "string", "description": "A URL or URL template specifying where the results shall be written. Supported formats: \n" }, "iamRoleARN": { "type": "string", "description": "IAM role ARN, which allows programmatic access to the S3 bucket specified in the `url` field using the recommended assume IAM role flow." }, "accessKey": { "type": "string", "description": "AWS access key, which allows programmatic access to the S3 bucket specified in the `url` field." }, "secretAccessKey": { "type": "string", "description": "AWS secret access key which must correspond to the AWS access key." }, "region": { "type": "string", "description": "The region where the S3 bucket is located. If omitted, the region of the Sentinel Hub deployment that the request is submitted to is assumed." } } }