Skip to content

Commit b55199a

Browse files
authored
chore(kinesisanalytics-flink-alpha): backfill missing enums for kinesisanalytics-flink-alpha (#33632)
### Description of changes backfill missing enums for kinesisanalytics-flink-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 4227747 commit b55199a

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/lib/types.ts

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -75,6 +75,18 @@ export class Runtime {
7575
/** Flink Version 1.20 */
7676
public static readonly FLINK_1_20 = Runtime.of('FLINK-1_20');
7777

78+
/** Zeppelin Flink Version 3.0 */
79+
public static readonly ZEPPELIN_FLINK_3_0 = Runtime.of('ZEPPELIN-FLINK-3_0');
80+
81+
/** Zeppelin Flink Version 2.0 */
82+
public static readonly ZEPPELIN_FLINK_2_0 = Runtime.of('ZEPPELIN-FLINK-2_0');
83+
84+
/** Zeppelin Flink Version 1.0 */
85+
public static readonly ZEPPELIN_FLINK_1_0 = Runtime.of('ZEPPELIN-FLINK-1_0');
86+
87+
/** SQL Version 1.0 */
88+
public static readonly SQL_1_0 = Runtime.of('SQL-1_0');
89+
7890
/** Create a new Runtime with with an arbitrary Flink version string */
7991
public static of(value: string) {
8092
return new Runtime(value);

0 commit comments

Comments
 (0)