Skip to content

Commit

Permalink
chore(kinesisfirehose): backfill missing enums for kinesisfirehose (#…
Browse files Browse the repository at this point in the history
…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*
  • Loading branch information
paulhcsun authored Mar 2, 2025
1 parent d51f70a commit 7538a84
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions packages/aws-cdk-lib/aws-kinesisfirehose/lib/common.ts
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,10 @@ export class Compression {
* ZIP
*/
public static readonly ZIP = new Compression('ZIP');
/**
* Uncompressed
*/
public static readonly UNCOMPRESSED = new Compression('UNCOMPRESSED');

/**
* Creates a new Compression instance with a custom value.
Expand Down

0 comments on commit 7538a84

Please sign in to comment.