Skip to content

Commit 7538a84

Browse files
authoredMar 2, 2025
chore(kinesisfirehose): backfill missing enums for kinesisfirehose (#33653)
### Description of changes backfill missing enums for kinesisfirehose ### Checklist - [x] My code adheres to the [CONTRIBUTING GUIDE](https://github.com/aws/aws-cdk/blob/main/CONTRIBUTING.md) and [DESIGN GUIDELINES](https://github.com/aws/aws-cdk/blob/main/docs/DESIGN_GUIDELINES.md) ---- *By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license*
1 parent d51f70a commit 7538a84

File tree

1 file changed

+4
-0
lines changed
  • packages/aws-cdk-lib/aws-kinesisfirehose/lib

1 file changed

+4
-0
lines changed
 

‎packages/aws-cdk-lib/aws-kinesisfirehose/lib/common.ts

+4
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,10 @@ export class Compression {
2828
* ZIP
2929
*/
3030
public static readonly ZIP = new Compression('ZIP');
31+
/**
32+
* Uncompressed
33+
*/
34+
public static readonly UNCOMPRESSED = new Compression('UNCOMPRESSED');
3135

3236
/**
3337
* Creates a new Compression instance with a custom value.

0 commit comments

Comments
 (0)
Failed to load comments.