File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed
packages/@aws-cdk/aws-kinesisanalytics-flink-alpha/lib Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -75,6 +75,18 @@ export class Runtime {
75
75
/** Flink Version 1.20 */
76
76
public static readonly FLINK_1_20 = Runtime . of ( 'FLINK-1_20' ) ;
77
77
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
+
78
90
/** Create a new Runtime with with an arbitrary Flink version string */
79
91
public static of ( value : string ) {
80
92
return new Runtime ( value ) ;
You can’t perform that action at this time.
0 commit comments