{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/S3Configuration", "title": "S3Configuration", "type": "object", "required": [ "BucketARN", "FileKey" ], "properties": { "BucketARN": { "allOf": [ { "$ref": "#/components/schemas/BucketARN" }, { "description": "The ARN of the S3 bucket that contains the data." } ] }, "FileKey": { "allOf": [ { "$ref": "#/components/schemas/FileKey" }, { "description": "The name of the object that contains the data." } ] } }, "description": "For a SQL-based Kinesis Data Analytics application, provides a description of an Amazon S3 data source, including the Amazon Resource Name (ARN) of the S3 bucket and the name of the Amazon S3 object that contains the data." }