@@ -42,30 +42,31 @@ export class Runtime {
42
42
43
43
/**
44
44
* The NodeJS runtime (nodejs)
45
- * Legacy runtime no longer supported by AWS Lambda.
45
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime .
46
46
*/
47
47
public static readonly NODEJS = new Runtime ( 'nodejs' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
48
48
49
49
/**
50
50
* The NodeJS 4.3 runtime (nodejs4.3)
51
- * Legacy runtime no longer supported by AWS Lambda.
51
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime .
52
52
*/
53
53
public static readonly NODEJS_4_3 = new Runtime ( 'nodejs4.3' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
54
54
55
55
/**
56
56
* The NodeJS 6.10 runtime (nodejs6.10)
57
- * Legacy runtime no longer supported by AWS Lambda.
57
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime .
58
58
*/
59
59
public static readonly NODEJS_6_10 = new Runtime ( 'nodejs6.10' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
60
60
61
61
/**
62
62
* The NodeJS 8.10 runtime (nodejs8.10)
63
- * Legacy runtime no longer supported by AWS Lambda.
63
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime .
64
64
*/
65
65
public static readonly NODEJS_8_10 = new Runtime ( 'nodejs8.10' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
66
66
67
67
/**
68
68
* The NodeJS 10.x runtime (nodejs10.x)
69
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest NodeJS runtime.
69
70
*/
70
71
public static readonly NODEJS_10_X = new Runtime ( 'nodejs10.x' , RuntimeFamily . NODEJS , { supportsInlineCode : true } ) ;
71
72
@@ -81,11 +82,13 @@ export class Runtime {
81
82
82
83
/**
83
84
* The Python 2.7 runtime (python2.7)
85
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Python runtime.
84
86
*/
85
87
public static readonly PYTHON_2_7 = new Runtime ( 'python2.7' , RuntimeFamily . PYTHON , { supportsInlineCode : true } ) ;
86
88
87
89
/**
88
90
* The Python 3.6 runtime (python3.6)
91
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Python runtime.
89
92
*/
90
93
public static readonly PYTHON_3_6 = new Runtime ( 'python3.6' , RuntimeFamily . PYTHON , {
91
94
supportsInlineCode : true ,
@@ -144,18 +147,19 @@ export class Runtime {
144
147
145
148
/**
146
149
* The .NET Core 1.0 runtime (dotnetcore1.0)
147
- * Legacy runtime no longer supported by AWS Lambda.
150
+ * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
148
151
*/
149
152
public static readonly DOTNET_CORE_1 = new Runtime ( 'dotnetcore1.0' , RuntimeFamily . DOTNET_CORE ) ;
150
153
151
154
/**
152
155
* The .NET Core 2.0 runtime (dotnetcore2.0)
153
- * Legacy runtime no longer supported by AWS Lambda.
156
+ * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
154
157
*/
155
158
public static readonly DOTNET_CORE_2 = new Runtime ( 'dotnetcore2.0' , RuntimeFamily . DOTNET_CORE ) ;
156
159
157
160
/**
158
161
* The .NET Core 2.1 runtime (dotnetcore2.1)
162
+ * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
159
163
*/
160
164
public static readonly DOTNET_CORE_2_1 = new Runtime ( 'dotnetcore2.1' , RuntimeFamily . DOTNET_CORE ) ;
161
165
@@ -171,6 +175,7 @@ export class Runtime {
171
175
172
176
/**
173
177
* The Ruby 2.5 runtime (ruby2.5)
178
+ * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Ruby runtime.
174
179
*/
175
180
public static readonly RUBY_2_5 = new Runtime ( 'ruby2.5' , RuntimeFamily . RUBY ) ;
176
181
0 commit comments