Add the ability to select data compression at the destination for data delivered via a Kinesis Data Firehose delivery stream.
const s3Destination = new destinations.S3(bucket, {
compression: Compression.SNAPPY,
});
new DeliveryStream(this, 'Delivery Stream', {
destinations: [destination],
});
Add the ability to select data compression at the destination for data delivered via a Kinesis Data Firehose delivery stream.
Use Case
Proposed Solution
See: https://github.com/aws/aws-cdk/pull/15505/files
This is a 🚀 Feature Request