Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/lib/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,18 @@ export class Runtime {
/** Flink Version 1.20 */
public static readonly FLINK_1_20 = Runtime.of('FLINK-1_20');

/** Zeppelin Flink Version 3.0 */
public static readonly ZEPPELIN_FLINK_3_0 = Runtime.of('ZEPPELIN-FLINK-3_0');

/** Zeppelin Flink Version 2.0 */
public static readonly ZEPPELIN_FLINK_2_0 = Runtime.of('ZEPPELIN-FLINK-2_0');

/** Zeppelin Flink Version 1.0 */
public static readonly ZEPPELIN_FLINK_1_0 = Runtime.of('ZEPPELIN-FLINK-1_0');

/** SQL Version 1.0 */
public static readonly SQL_1_0 = Runtime.of('SQL-1_0');

/** Create a new Runtime with with an arbitrary Flink version string */
public static of(value: string) {
return new Runtime(value);
Expand Down