File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
packages/@aws-cdk/aws-lambda/lib Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -26,12 +26,13 @@ export class Runtime {
26
26
/** A list of all known `Runtime`'s. */
27
27
public static readonly ALL = new Array < Runtime > ( ) ;
28
28
29
- /** @deprecated Use `Nodejs810` or `Nodejs10x` */
29
+ /** @deprecated Use { @link NODEJS_10_X} */
30
30
public static readonly NODEJS = new Runtime ( 'nodejs' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
31
- /** @deprecated Use `Nodejs810` or `Nodejs10x` */
31
+ /** @deprecated Use { @link NODEJS_10_X} */
32
32
public static readonly NODEJS_4_3 = new Runtime ( 'nodejs4.3' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
33
- /** @deprecated Use `Nodejs810` or `Nodejs10x` */
33
+ /** @deprecated Use { @link NODEJS_10_X} */
34
34
public static readonly NODEJS_6_10 = new Runtime ( 'nodejs6.10' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
35
+ /** @deprecated Use {@link NODEJS_10_X} */
35
36
public static readonly NODEJS_8_10 = new Runtime ( 'nodejs8.10' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
36
37
public static readonly NODEJS_10_X = new Runtime ( 'nodejs10.x' , RuntimeFamily . NODEJS , { supportsInlineCode : false } ) ;
37
38
public static readonly PYTHON_2_7 = new Runtime ( 'python2.7' , RuntimeFamily . PYTHON , { supportsInlineCode : true } ) ;
You can’t perform that action at this time.
0 commit comments