{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-glue-databrew/refs/heads/main/json-schema/glue-databrew-s3-location-schema.json", "title": "S3Location", "description": "Represents an Amazon S3 location (bucket name, bucket owner, and object key) where DataBrew can read input data, or write output from a job.", "type": "object", "properties": { "Bucket": { "allOf": [ { "$ref": "#/components/schemas/Bucket" }, { "description": "The Amazon S3 bucket name." } ] }, "Key": { "allOf": [ { "$ref": "#/components/schemas/Key" }, { "description": "The unique name of the object in the bucket." } ] }, "BucketOwner": { "allOf": [ { "$ref": "#/components/schemas/BucketOwner" }, { "description": "The Amazon Web Services account ID of the bucket owner." } ] } }, "required": [ "Bucket" ] }