{ "$schema": "https://json-schema.org/draft/2020-12/schema", "$id": "#/components/schemas/S3DestinationConfiguration", "title": "S3DestinationConfiguration", "type": "object", "required": [ "RoleARN", "BucketARN" ], "properties": { "RoleARN": { "allOf": [ { "$ref": "#/components/schemas/RoleARN" }, { "description": "The Amazon Resource Name (ARN) of the Amazon Web Services credentials. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces." } ] }, "BucketARN": { "allOf": [ { "$ref": "#/components/schemas/BucketARN" }, { "description": "The ARN of the S3 bucket. For more information, see Amazon Resource Names (ARNs) and Amazon Web Services Service Namespaces." } ] }, "Prefix": { "allOf": [ { "$ref": "#/components/schemas/Prefix" }, { "description": "The \"YYYY/MM/DD/HH\" time format prefix is automatically used for delivered Amazon S3 files. You can also specify a custom prefix, as described in Custom Prefixes for Amazon S3 Objects." } ] }, "ErrorOutputPrefix": { "allOf": [ { "$ref": "#/components/schemas/ErrorOutputPrefix" }, { "description": "A prefix that Kinesis Data Firehose evaluates and adds to failed records before writing them to S3. This prefix appears immediately following the bucket name. For information about how to specify this prefix, see Custom Prefixes for Amazon S3 Objects." } ] }, "BufferingHints": { "allOf": [ { "$ref": "#/components/schemas/BufferingHints" }, { "description": "The buffering option. If no value is specified, BufferingHints object default values are used." } ] }, "CompressionFormat": { "allOf": [ { "$ref": "#/components/schemas/CompressionFormat" }, { "description": "

The compression format. If no value is specified, the default is UNCOMPRESSED.

The compression formats SNAPPY or ZIP cannot be specified for Amazon Redshift destinations because they are not supported by the Amazon Redshift COPY operation that reads from the S3 bucket.

" } ] }, "EncryptionConfiguration": { "allOf": [ { "$ref": "#/components/schemas/EncryptionConfiguration" }, { "description": "The encryption configuration. If no value is specified, the default is no encryption." } ] }, "CloudWatchLoggingOptions": { "allOf": [ { "$ref": "#/components/schemas/CloudWatchLoggingOptions" }, { "description": "The CloudWatch logging options for your delivery stream." } ] } }, "description": "Describes the configuration of a destination in Amazon S3." }