@@ -161,24 +161,25 @@ export class Runtime {
161
161
162
162
/**
163
163
* The .NET Core 1.0 runtime (dotnetcore1.0)
164
- * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
164
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
165
165
*/
166
166
public static readonly DOTNET_CORE_1 = new Runtime ( 'dotnetcore1.0' , RuntimeFamily . DOTNET_CORE ) ;
167
167
168
168
/**
169
169
* The .NET Core 2.0 runtime (dotnetcore2.0)
170
- * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
170
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
171
171
*/
172
172
public static readonly DOTNET_CORE_2 = new Runtime ( 'dotnetcore2.0' , RuntimeFamily . DOTNET_CORE ) ;
173
173
174
174
/**
175
175
* The .NET Core 2.1 runtime (dotnetcore2.1)
176
- * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
176
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
177
177
*/
178
178
public static readonly DOTNET_CORE_2_1 = new Runtime ( 'dotnetcore2.1' , RuntimeFamily . DOTNET_CORE ) ;
179
179
180
180
/**
181
181
* The .NET Core 3.1 runtime (dotnetcore3.1)
182
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest .NET Core runtime.
182
183
*/
183
184
public static readonly DOTNET_CORE_3_1 = new Runtime ( 'dotnetcore3.1' , RuntimeFamily . DOTNET_CORE ) ;
184
185
@@ -189,7 +190,7 @@ export class Runtime {
189
190
190
191
/**
191
192
* The Ruby 2.5 runtime (ruby2.5)
192
- * Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Ruby runtime.
193
+ * @deprecated Legacy runtime no longer supported by AWS Lambda. Migrate to the latest Ruby runtime.
193
194
*/
194
195
public static readonly RUBY_2_5 = new Runtime ( 'ruby2.5' , RuntimeFamily . RUBY ) ;
195
196
0 commit comments