Skip to content

Commit 6ed7a45

Browse files
authored
chore(kinesisfirehose-destinations-alpha): backfill missing enums for kinesisfirehose-destinations-alpha (#33633)
### Description of changes backfill missing enums for kinesisfirehose-destinations-alpha ### 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 b55199a commit 6ed7a45

File tree

1 file changed

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

1 file changed

+4
-0
lines changed

packages/@aws-cdk/aws-kinesisfirehose-destinations-alpha/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)