@@ -210,10 +210,9 @@ abstract class AdotLambdaLayerVersion {
210
210
*/
211
211
export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
212
212
/**
213
- * The latest layer version available in this CDK version. New versions could
214
- * introduce incompatible changes. Make sure to test them before deploying to production.
213
+ * Version 1.30.0
215
214
*/
216
- public static readonly LATEST = new AdotLambdaLayerJavaSdkVersion ( '1.28.1 ' ) ;
215
+ public static readonly V1_30_0 = new AdotLambdaLayerJavaSdkVersion ( '1.30.0 ' ) ;
217
216
218
217
/**
219
218
* Version 1.28.1
@@ -225,6 +224,12 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
225
224
*/
226
225
public static readonly V1_19_0 = new AdotLambdaLayerJavaSdkVersion ( '1.19.0' ) ;
227
226
227
+ /**
228
+ * The latest layer version available in this CDK version. New versions could
229
+ * introduce incompatible changes. Make sure to test them before deploying to production.
230
+ */
231
+ public static readonly LATEST = this . V1_30_0 ;
232
+
228
233
private constructor ( protected readonly layerVersion : string ) {
229
234
super ( AdotLambdaLayerType . JAVA_SDK , layerVersion ) ;
230
235
}
@@ -235,10 +240,9 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
235
240
*/
236
241
export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLayerVersion {
237
242
/**
238
- * The latest layer version available in this CDK version. New versions could
239
- * introduce incompatible changes. Make sure to test them before deploying to production.
243
+ * Version 1.30.0
240
244
*/
241
- public static readonly LATEST = new AdotLambdaLayerJavaAutoInstrumentationVersion ( '1.28.1 ' ) ;
245
+ public static readonly V1_30_0 = new AdotLambdaLayerJavaAutoInstrumentationVersion ( '1.30.0 ' ) ;
242
246
243
247
/**
244
248
* Version 1.28.1
@@ -250,6 +254,12 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
250
254
*/
251
255
public static readonly V1_19_2 = new AdotLambdaLayerJavaAutoInstrumentationVersion ( '1.19.2' ) ;
252
256
257
+ /**
258
+ * The latest layer version available in this CDK version. New versions could
259
+ * introduce incompatible changes. Make sure to test them before deploying to production.
260
+ */
261
+ public static readonly LATEST = this . V1_30_0 ;
262
+
253
263
private constructor ( protected readonly layerVersion : string ) {
254
264
super ( AdotLambdaLayerType . JAVA_AUTO_INSTRUMENTATION , layerVersion ) ;
255
265
}
@@ -260,10 +270,9 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
260
270
*/
261
271
export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
262
272
/**
263
- * The latest layer version available in this CDK version. New versions could
264
- * introduce incompatible changes. Make sure to test them before deploying to production.
273
+ * Version 1.20.0
265
274
*/
266
- public static readonly LATEST = new AdotLambdaLayerPythonSdkVersion ( '1.19.0-1 ' ) ;
275
+ public static readonly V1_20_0 = new AdotLambdaLayerPythonSdkVersion ( '1.20.0 ' ) ;
267
276
268
277
/**
269
278
* Version 1.19.0
@@ -300,6 +309,12 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
300
309
*/
301
310
public static readonly V1_13_0 = new AdotLambdaLayerPythonSdkVersion ( '1.13.0' ) ;
302
311
312
+ /**
313
+ * The latest layer version available in this CDK version. New versions could
314
+ * introduce incompatible changes. Make sure to test them before deploying to production.
315
+ */
316
+ public static readonly LATEST = this . V1_20_0 ;
317
+
303
318
private constructor ( protected readonly layerVersion : string ) {
304
319
super ( AdotLambdaLayerType . PYTHON_SDK , layerVersion ) ;
305
320
}
@@ -310,10 +325,9 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
310
325
*/
311
326
export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion {
312
327
/**
313
- * The latest layer version available in this CDK version. New versions could
314
- * introduce incompatible changes. Make sure to test them before deploying to production.
328
+ * Version 1.16.0
315
329
*/
316
- public static readonly LATEST = new AdotLambdaLayerJavaScriptSdkVersion ( '1.15.0-1 ' ) ;
330
+ public static readonly V1_16_0 = new AdotLambdaLayerJavaScriptSdkVersion ( '1.16.0 ' ) ;
317
331
318
332
/**
319
333
* Version 1.15.0
@@ -325,6 +339,12 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
325
339
*/
326
340
public static readonly V1_7_0 = new AdotLambdaLayerJavaScriptSdkVersion ( '1.7.0' ) ;
327
341
342
+ /**
343
+ * The latest layer version available in this CDK version. New versions could
344
+ * introduce incompatible changes. Make sure to test them before deploying to production.
345
+ */
346
+ public static readonly LATEST = this . V1_16_0 ;
347
+
328
348
private constructor ( protected readonly layerVersion : string ) {
329
349
super ( AdotLambdaLayerType . JAVASCRIPT_SDK , layerVersion ) ;
330
350
}
@@ -335,10 +355,9 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
335
355
*/
336
356
export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
337
357
/**
338
- * The latest layer version available in this CDK version. New versions could
339
- * introduce incompatible changes. Make sure to test them before deploying to production.
358
+ * Version 0.84.0
340
359
*/
341
- public static readonly LATEST = new AdotLambdaLayerGenericVersion ( '0.82 .0' ) ;
360
+ public static readonly V0_84_0 = new AdotLambdaLayerGenericVersion ( '0.84 .0' ) ;
342
361
343
362
/**
344
363
* Version 0.82.0
@@ -350,6 +369,11 @@ export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
350
369
*/
351
370
public static readonly V0_62_1 = new AdotLambdaLayerGenericVersion ( '0.62.1' ) ;
352
371
372
+ /**
373
+ * The latest layer version available in this CDK version. New versions could
374
+ * introduce incompatible changes. Make sure to test them before deploying to production.
375
+ */
376
+ public static readonly LATEST = this . V0_84_0 ;
353
377
private constructor ( protected readonly layerVersion : string ) {
354
378
super ( AdotLambdaLayerType . GENERIC , layerVersion ) ;
355
379
}
0 commit comments