Skip to content

Commit

Permalink
Update Constants for the ADOT LAMBDA LAYER
Browse files Browse the repository at this point in the history
  • Loading branch information
vasireddy99 committed Aug 18, 2023
1 parent 89393a2 commit 8287f8d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions packages/aws-cdk-lib/aws-lambda/lib/adot-layers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,11 @@ export class AdotLambdaLayerJavaSdkVersion extends AdotLambdaLayerVersion {
*/
public static readonly V1_19_0 = new AdotLambdaLayerJavaSdkVersion('1.19.0');

/**
* Version 1.28.1
*/
public static readonly V1_19_0 = new AdotLambdaLayerJavaSdkVersion('1.28.1');

private constructor(protected readonly layerVersion: string) {
super(AdotLambdaLayerType.JAVA_SDK, layerVersion);
}
Expand All @@ -240,6 +245,11 @@ export class AdotLambdaLayerJavaAutoInstrumentationVersion extends AdotLambdaLay
*/
public static readonly V1_19_2 = new AdotLambdaLayerJavaAutoInstrumentationVersion('1.19.2');

/**
* Version 1.28.1
*/
public static readonly V1_28_1 = new AdotLambdaLayerJavaAutoInstrumentationVersion('1.28.1');

private constructor(protected readonly layerVersion: string) {
super(AdotLambdaLayerType.JAVA_AUTO_INSTRUMENTATION, layerVersion);
}
Expand All @@ -255,6 +265,11 @@ export class AdotLambdaLayerPythonSdkVersion extends AdotLambdaLayerVersion {
*/
public static readonly LATEST = new AdotLambdaLayerPythonSdkVersion('1.18.0');

/**
* Version 1.19.0
*/
public static readonly V1_19_0_1 = new AdotLambdaLayerPythonSdkVersion('1.19.0-1');

/**
* Version 1.18.0
*/
Expand Down Expand Up @@ -305,6 +320,11 @@ export class AdotLambdaLayerJavaScriptSdkVersion extends AdotLambdaLayerVersion
*/
public static readonly V1_7_0 = new AdotLambdaLayerJavaScriptSdkVersion('1.7.0');

/**
* Version 1.15.0
*/
public static readonly V1_15_0_1 = new AdotLambdaLayerJavaScriptSdkVersion('1.15.0-1');

private constructor(protected readonly layerVersion: string) {
super(AdotLambdaLayerType.JAVASCRIPT_SDK, layerVersion);
}
Expand All @@ -325,6 +345,11 @@ export class AdotLambdaLayerGenericVersion extends AdotLambdaLayerVersion {
*/
public static readonly V0_62_1 = new AdotLambdaLayerGenericVersion('0.62.1');

/**
* Version 0.82.0
*/
public static readonly V0_82_0 = new AdotLambdaLayerGenericVersion('0.82.0');

private constructor(protected readonly layerVersion: string) {
super(AdotLambdaLayerType.GENERIC, layerVersion);
}
Expand Down

0 comments on commit 8287f8d

Please sign in to comment.