class AdotLambdaLayerJavaSdkVersion
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.Lambda.AdotLambdaLayerJavaSdkVersion |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awslambda#AdotLambdaLayerJavaSdkVersion |
Java | software.amazon.awscdk.services.lambda.AdotLambdaLayerJavaSdkVersion |
Python | aws_cdk.aws_lambda.AdotLambdaLayerJavaSdkVersion |
TypeScript (source) | aws-cdk-lib » aws_lambda » AdotLambdaLayerJavaSdkVersion |
The collection of versions of the ADOT Lambda Layer for Java SDK.
Example
declare const fn: lambda.Function;
const layerArn = lambda.AdotLambdaLayerJavaSdkVersion.V1_19_0.layerArn(fn.stack, fn.architecture);
Properties
| Name | Type | Description |
|---|---|---|
| layer | string | |
| static LATEST | Adot | The latest layer version available in this CDK version. |
| static V1_19_0 | Adot | Version 1.19.0. |
| static V1_28_1 | Adot | Version 1.28.1. |
| static V1_30_0 | Adot | Version 1.30.0. |
| static V1_31_0 | Adot | Version 1.31.0. |
| static V1_32_0 | Adot | Version 1.32.0. |
| static V1_32_0_1 | Adot | Version 1.32.0. |
layerVersion
Type:
string
static LATEST
Type:
Adot
The latest layer version available in this CDK version.
New versions could introduce incompatible changes. Make sure to test them before deploying to production.
static V1_19_0
Type:
Adot
Version 1.19.0.
static V1_28_1
Type:
Adot
Version 1.28.1.
static V1_30_0
Type:
Adot
Version 1.30.0.
static V1_31_0
Type:
Adot
Version 1.31.0.
static V1_32_0
Type:
Adot
Version 1.32.0.
static V1_32_0_1
Type:
Adot
Version 1.32.0.
Methods
| Name | Description |
|---|---|
| layer | The ARN of the Lambda layer. |
layerArn(scope, architecture)
public layerArn(scope: IConstruct, architecture: Architecture): string
Parameters
- scope
IConstruct— The binding scope. - architecture
Architecture— The architecture of the Lambda layer (either X86_64 or ARM_64).
Returns
string
The ARN of the Lambda layer.

.NET
Go
Java
Python
TypeScript (