UNPKG

aws-cdk-lib

Version:

Version 2 of the AWS Cloud Development Kit library

1,266 lines (978 loc) 60.4 kB
# AWS Lambda Construct Library This construct library allows you to define AWS Lambda Functions. ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), }); ``` When deployed, this construct creates or updates an existing `AWS::Lambda::Function` resource. When updating, AWS CloudFormation calls the [UpdateFunctionConfiguration](https://docs.aws.amazon.com/lambda/latest/api/API_UpdateFunctionConfiguration.html) and [UpdateFunctionCode](https://docs.aws.amazon.com/lambda/latest/api/API_UpdateFunctionCode.html) Lambda APIs under the hood. Because these calls happen sequentially, and invocations can happen between these calls, your function may encounter errors in the time between the calls. For example, if you update an existing Lambda function by removing an environment variable and the code that references that environment variable in the same CDK deployment, you may see invocation errors related to a missing environment variable. To work around this, you can invoke your function against a version or alias by default, rather than the `$LATEST` version. To further mitigate these issues, you can ensure consistency between your function code and infrastructure configuration by defining environment variables as a single source of truth in your CDK stack. You can define them in a separate `env.ts` file and reference them in both your handler and CDK configuration. This approach allows you to catch errors at compile time, benefit from improved IDE support, minimize the risk of mismatched configurations, and enhance maintainability. ## Handler Code The `lambda.Code` class includes static convenience methods for various types of runtime code. * `lambda.Code.fromBucket(bucket, key, objectVersion)` - specify an S3 object that contains the archive of your runtime code. * `lambda.Code.fromBucketV2(bucket, key, {objectVersion: version, sourceKMSKey: key})` - specify an S3 object that contains the archive of your runtime code. ```ts import { Key } from 'aws-cdk-lib/aws-kms'; import * as s3 from 'aws-cdk-lib/aws-s3'; const bucket = new s3.Bucket(this, 'Bucket'); declare const key: Key; const options = { sourceKMSKey: key, }; const fnBucket = new lambda.Function(this, 'myFunction2', { runtime: lambda.Runtime.NODEJS_LATEST, handler: 'index.handler', code: lambda.Code.fromBucketV2(bucket, 'python-lambda-handler.zip', options), }); ``` * `lambda.Code.fromInline(code)` - inline the handle code as a string. This is limited to supported runtimes. * `lambda.Code.fromAsset(path)` - specify a directory or a .zip file in the local filesystem which will be zipped and uploaded to S3 before deployment. See also [bundling asset code](#bundling-asset-code). * `lambda.Code.fromDockerBuild(path, options)` - use the result of a Docker build as code. The runtime code is expected to be located at `/asset` in the image and will be zipped and uploaded to S3 as an asset. * `lambda.Code.fromCustomCommand(output, command, customCommandOptions)` - supply a command that is invoked during cdk synth. That command is meant to direct the generated code to output (a zip file or a directory), which is then used as the code for the created AWS Lambda. The following example shows how to define a Python function and deploy the code from the local directory `my-lambda-handler` to it: [Example of Lambda Code from Local Assets](test/integ.assets.lit.ts) When deploying a stack that contains this code, the directory will be zip archived and then uploaded to an S3 bucket, then the exact location of the S3 objects will be passed when the stack is deployed. During synthesis, the CDK expects to find a directory on disk at the asset directory specified. Note that we are referencing the asset directory relatively to our CDK project directory. This is especially important when we want to share this construct through a library. Different programming languages will have different techniques for bundling resources into libraries. ## Docker Images Lambda functions allow specifying their handlers within docker images. The docker image can be an image from ECR or a local asset that the CDK will package and load into ECR. The following `DockerImageFunction` construct uses a local folder with a Dockerfile as the asset that will be used as the function handler. ```ts new lambda.DockerImageFunction(this, 'AssetFunction', { code: lambda.DockerImageCode.fromImageAsset(path.join(__dirname, 'docker-handler')), }); ``` You can also specify an image that already exists in ECR as the function handler. ```ts import * as ecr from 'aws-cdk-lib/aws-ecr'; const repo = new ecr.Repository(this, 'Repository'); new lambda.DockerImageFunction(this, 'ECRFunction', { code: lambda.DockerImageCode.fromEcr(repo), }); ``` The props for these docker image resources allow overriding the image's `CMD`, `ENTRYPOINT`, and `WORKDIR` configurations as well as choosing a specific tag or digest. See their docs for more information. To deploy a `DockerImageFunction` on Lambda `arm64` architecture, specify `Architecture.ARM_64` in `architecture`. This will bundle docker image assets for `arm64` architecture with `--platform linux/arm64` even if build within an `x86_64` host. With that being said, if you are bundling `DockerImageFunction` for Lambda `amd64` architecture from a `arm64` machine like a Macbook with `arm64` CPU, you would need to specify `architecture: lambda.Architecture.X86_64` as well. This ensures the `--platform` argument is passed to the image assets bundling process so you can bundle up `X86_64` images from the `arm64` machine. ```ts new lambda.DockerImageFunction(this, 'AssetFunction', { code: lambda.DockerImageCode.fromImageAsset(path.join(__dirname, 'docker-arm64-handler')), architecture: lambda.Architecture.ARM_64, }); ``` ## Execution Role Lambda functions assume an IAM role during execution. In CDK by default, Lambda functions will use an autogenerated Role if one is not provided. The autogenerated Role is automatically given permissions to execute the Lambda function. To reference the autogenerated Role: ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), }); const role = fn.role; // the Role ``` You can also provide your own IAM role. Provided IAM roles will not automatically be given permissions to execute the Lambda function. To provide a role and grant it appropriate permissions: ```ts const myRole = new iam.Role(this, 'My Role', { assumedBy: new iam.ServicePrincipal('lambda.amazonaws.com'), }); const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), role: myRole, // user-provided role }); myRole.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName("service-role/AWSLambdaBasicExecutionRole")); myRole.addManagedPolicy(iam.ManagedPolicy.fromAwsManagedPolicyName("service-role/AWSLambdaVPCAccessExecutionRole")); // only required if your function lives in a VPC ``` ## Function Timeout AWS Lambda functions have a default timeout of 3 seconds, but this can be increased up to 15 minutes. The timeout is available as a property of `Function` so that you can reference it elsewhere in your stack. For instance, you could use it to create a CloudWatch alarm to report when your function timed out: ```ts import * as cdk from 'aws-cdk-lib'; import * as cloudwatch from 'aws-cdk-lib/aws-cloudwatch'; const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), timeout: Duration.minutes(5), }); if (fn.timeout) { new cloudwatch.Alarm(this, `MyAlarm`, { metric: fn.metricDuration().with({ statistic: 'Maximum', }), evaluationPeriods: 1, datapointsToAlarm: 1, threshold: fn.timeout.toMilliseconds(), treatMissingData: cloudwatch.TreatMissingData.IGNORE, alarmName: 'My Lambda Timeout', }); } ``` ## Advanced Logging You can have more control over your function logs, by specifying the log format (Json or plain text), the system log level, the application log level, as well as choosing the log group: ```ts import { ILogGroup } from 'aws-cdk-lib/aws-logs'; declare const logGroup: ILogGroup; new lambda.Function(this, 'Lambda', { code: new lambda.InlineCode('foo'), handler: 'index.handler', runtime: lambda.Runtime.NODEJS_18_X, loggingFormat: lambda.LoggingFormat.JSON, systemLogLevelV2: lambda.SystemLogLevel.INFO, applicationLogLevelV2: lambda.ApplicationLogLevel.INFO, logGroup: logGroup, }); ``` To use `applicationLogLevelV2` and/or `systemLogLevelV2` you must set `loggingFormat` to `LoggingFormat.JSON`. ## Customizing Log Group Creation ### Log Group Creation Methods | Method | Description | Tag Propagation | Prop Injection | Aspects | Notes | |--------|-------------|-----------------|----------------|---------|-------| | **logRetention prop** | Legacy approach using Custom Resource | False | False | False | Does not support TPA | | **logGroup prop** | Explicitly supplied by user in CDK app | True | True | True | Full support for TPA | | **Lazy creation** | Lambda service creates logGroup on first invocation | False | False | False | Occurs when both logRetention and logGroup are undefined and USE_CDK_MANAGED_LAMBDA_LOGGROUP is false | | **USE_CDK_MANAGED_LAMBDA_LOGGROUP** | CDK Lambda function construct creates log group with default props | True | True | True | Feature flag must be enabled | *TPA: Tag propagation, Prop Injection, Aspects* #### Order of precedence ```text Highest Precedence | +---------------+---------------+ | | +-------------------------+ +------------------------+ | logRetention is set | | logGroup is set | +-----------+-------------+ +----------+-------------+ | | v v Create LogGroup via Use the provided LogGroup Custom Resource (retention instance (CDK-managed, managed, logGroup disallowed) logRetention disallowed) | | +---------------+---------------+ | v +-----------------------------------------------+ | Feature flag enabled: | | aws-cdk:aws-lambda:useCdkManagedLogGroup | +------------------ +---------------------------+ | v Create LogGroup at synth time (CDK-managed, default settings for logGroup) | v +---------------------------+ | Default (no config set) | +------------+--------------+ | v Lambda service creates log group on first invocation runtime (CDK does not manage the log group resource) ``` ### Tag Propagation Refer section `Log Group Creation Methods` to find out which modes support tag propagation. As an example, adding the following line in your cdk app will also propagate to the logGroup. ``` const fn = new lambda.Function(this, 'MyFunctionWithFFTrue', { runtime: lambda.Runtime.NODEJS_20_X, handler: 'handler.main', code: lambda.Code.fromAsset('lambda'), }); cdk.Tags.of(fn).add('env', 'dev'); // the tag is also added to the log group ``` ## Resource-based Policies AWS Lambda supports resource-based policies for controlling access to Lambda functions and layers on a per-resource basis. In particular, this allows you to give permission to AWS services, AWS Organizations, or other AWS accounts to modify and invoke your functions. ### Grant function access to AWS services ```ts // Grant permissions to a service declare const fn: lambda.Function; const principal = new iam.ServicePrincipal('my-service'); fn.grantInvoke(principal); // Equivalent to: fn.addPermission('my-service Invocation', { principal: principal, }); ``` You can also restrict permissions given to AWS services by providing a source account or ARN (representing the account and identifier of the resource that accesses the function or layer). **Important**: > By default `fn.grantInvoke()` grants permission to the principal to invoke any version of the function, including all past ones. If you only want the principal to be granted permission to invoke the latest version or the unqualified Lambda ARN, use `grantInvokeLatestVersion(grantee)`. ```ts declare const fn: lambda.Function; const principal = new iam.ServicePrincipal('my-service'); // Grant invoke only to latest version and unqualified lambda arn fn.grantInvokeLatestVersion(principal); ``` If you want to grant access for invoking a specific version of Lambda function, you can use `fn.grantInvokeVersion(grantee, version)` ```ts declare const fn: lambda.Function; const principal = new iam.ServicePrincipal('my-service'); declare const version: lambda.IVersion; // Grant invoke only to the specific version fn.grantInvokeVersion(principal, version); ``` For more information, see [Granting function access to AWS services](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-serviceinvoke) in the AWS Lambda Developer Guide. ### Grant function access to an AWS Organization ```ts // Grant permissions to an entire AWS organization declare const fn: lambda.Function; const org = new iam.OrganizationPrincipal('o-xxxxxxxxxx'); fn.grantInvoke(org); ``` In the above example, the `principal` will be `*` and all users in the organization `o-xxxxxxxxxx` will get function invocation permissions. You can restrict permissions given to the organization by specifying an AWS account or role as the `principal`: ```ts // Grant permission to an account ONLY IF they are part of the organization declare const fn: lambda.Function; const account = new iam.AccountPrincipal('123456789012'); fn.grantInvoke(account.inOrganization('o-xxxxxxxxxx')); ``` For more information, see [Granting function access to an organization](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xorginvoke) in the AWS Lambda Developer Guide. ### Grant function access to other AWS accounts ```ts // Grant permission to other AWS account declare const fn: lambda.Function; const account = new iam.AccountPrincipal('123456789012'); fn.grantInvoke(account); ``` For more information, see [Granting function access to other accounts](https://docs.aws.amazon.com/lambda/latest/dg/access-control-resource-based.html#permissions-resource-xaccountinvoke) in the AWS Lambda Developer Guide. ### Grant function access to unowned principals Providing an unowned principal (such as account principals, generic ARN principals, service principals, and principals in other accounts) to a call to `fn.grantInvoke` will result in a resource-based policy being created. If the principal in question has conditions limiting the source account or ARN of the operation (see above), these conditions will be automatically added to the resource policy. ```ts declare const fn: lambda.Function; const servicePrincipal = new iam.ServicePrincipal('my-service'); const sourceArn = 'arn:aws:s3:::amzn-s3-demo-bucket'; const sourceAccount = '111122223333'; const servicePrincipalWithConditions = servicePrincipal.withConditions({ ArnLike: { 'aws:SourceArn': sourceArn, }, StringEquals: { 'aws:SourceAccount': sourceAccount, }, }); fn.grantInvoke(servicePrincipalWithConditions); ``` ### Grant function access to a CompositePrincipal To grant invoke permissions to a `CompositePrincipal` use the `grantInvokeCompositePrincipal` method: ```ts declare const fn: lambda.Function; const compositePrincipal = new iam.CompositePrincipal( new iam.OrganizationPrincipal('o-zzzzzzzzzz'), new iam.ServicePrincipal('apigateway.amazonaws.com'), ); fn.grantInvokeCompositePrincipal(compositePrincipal); ``` ## Versions You can use [versions](https://docs.aws.amazon.com/lambda/latest/dg/configuration-versions.html) to manage the deployment of your AWS Lambda functions. For example, you can publish a new version of a function for beta testing without affecting users of the stable production version. The function version includes the following information: * The function code and all associated dependencies. * The Lambda runtime that executes the function. * All of the function settings, including the environment variables. * A unique Amazon Resource Name (ARN) to identify this version of the function. You could create a version to your lambda function using the `Version` construct. ```ts declare const fn: lambda.Function; const version = new lambda.Version(this, 'MyVersion', { lambda: fn, }); ``` The major caveat to know here is that a function version must always point to a specific 'version' of the function. When the function is modified, the version will continue to point to the 'then version' of the function. One way to ensure that the `lambda.Version` always points to the latest version of your `lambda.Function` is to set an environment variable which changes at least as often as your code does. This makes sure the function always has the latest code. For instance - ```ts const codeVersion = "stringOrMethodToGetCodeVersion"; const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), environment: { 'CodeVersionString': codeVersion, }, }); ``` The `fn.latestVersion` property returns a `lambda.IVersion` which represents the `$LATEST` pseudo-version. However, most AWS services require a specific AWS Lambda version, and won't allow you to use `$LATEST`. Therefore, you would normally want to use `lambda.currentVersion`. The `fn.currentVersion` property can be used to obtain a `lambda.Version` resource that represents the AWS Lambda function defined in your application. Any change to your function's code or configuration will result in the creation of a new version resource. You can specify options for this version through the `currentVersionOptions` property. NOTE: The `currentVersion` property is only supported when your AWS Lambda function uses either `lambda.Code.fromAsset` or `lambda.Code.fromInline`. Other types of code providers (such as `lambda.Code.fromBucket`) require that you define a `lambda.Version` resource directly since the CDK is unable to determine if their contents had changed. ### `currentVersion`: Updated hashing logic To produce a new lambda version each time the lambda function is modified, the `currentVersion` property under the hood, computes a new logical id based on the properties of the function. This informs CloudFormation that a new `AWS::Lambda::Version` resource should be created pointing to the updated Lambda function. However, a bug was introduced in this calculation that caused the logical id to change when it was not required (ex: when the Function's `Tags` property, or when the `DependsOn` clause was modified). This caused the deployment to fail since the Lambda service does not allow creating duplicate versions. This has been fixed in the AWS CDK but *existing* users need to opt-in via a [feature flag]. Users who have run `cdk init` since this fix will be opted in, by default. Otherwise, you will need to enable the [feature flag] `@aws-cdk/aws-lambda:recognizeVersionProps`. Since CloudFormation does not allow duplicate versions, you will also need to make some modification to your function so that a new version can be created. To efficiently and trivially modify all your lambda functions at once, you can attach the `FunctionVersionUpgrade` aspect to the stack, which slightly alters the function description. This aspect is intended for one-time use to upgrade the version of all your functions at the same time, and can safely be removed after deploying once. ```ts const stack = new Stack(); Aspects.of(stack).add(new lambda.FunctionVersionUpgrade(LAMBDA_RECOGNIZE_VERSION_PROPS)); ``` When the new logic is in effect, you may rarely come across the following error: `The following properties are not recognized as version properties`. This will occur, typically when [property overrides] are used, when a new property introduced in `AWS::Lambda::Function` is used that CDK is still unaware of. To overcome this error, use the API `Function.classifyVersionProperty()` to record whether a new version should be generated when this property is changed. This can be typically determined by checking whether the property can be modified using the *[UpdateFunctionConfiguration]* API or not. ### `currentVersion`: Updated hashing logic for layer versions An additional update to the hashing logic fixes two issues surrounding layers. Prior to this change, updating the lambda layer version would have no effect on the function version. Also, the order of lambda layers provided to the function was unnecessarily baked into the hash. This has been fixed in the AWS CDK starting with version 2.27. If you ran `cdk init` with an earlier version, you will need to opt-in via a [feature flag]. If you run `cdk init` with v2.27 or later, this fix will be opted in, by default. Existing users will need to enable the [feature flag] `@aws-cdk/aws-lambda:recognizeLayerVersion`. Since CloudFormation does not allow duplicate versions, they will also need to make some modification to their function so that a new version can be created. To efficiently and trivially modify all your lambda functions at once, users can attach the `FunctionVersionUpgrade` aspect to the stack, which slightly alters the function description. This aspect is intended for one-time use to upgrade the version of all your functions at the same time, and can safely be removed after deploying once. ```ts const stack = new Stack(); Aspects.of(stack).add(new lambda.FunctionVersionUpgrade(LAMBDA_RECOGNIZE_LAYER_VERSION)); ``` [feature flag]: https://docs.aws.amazon.com/cdk/latest/guide/featureflags.html [property overrides]: https://docs.aws.amazon.com/cdk/latest/guide/cfn_layer.html#cfn_layer_raw [UpdateFunctionConfiguration]: https://docs.aws.amazon.com/lambda/latest/dg/API_UpdateFunctionConfiguration.html ## Aliases You can define one or more [aliases](https://docs.aws.amazon.com/lambda/latest/dg/configuration-aliases.html) for your AWS Lambda function. A Lambda alias is like a pointer to a specific Lambda function version. Users can access the function version using the alias ARN. The `version.addAlias()` method can be used to define an AWS Lambda alias that points to a specific version. The following example defines an alias named `live` which will always point to a version that represents the function as defined in your CDK app. When you change your lambda code or configuration, a new resource will be created. You can specify options for the current version through the `currentVersionOptions` property. ```ts const fn = new lambda.Function(this, 'MyFunction', { currentVersionOptions: { removalPolicy: RemovalPolicy.RETAIN, // retain old versions retryAttempts: 1, // async retry attempts }, runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), }); fn.addAlias('live'); ``` ## Function URL A function URL is a dedicated HTTP(S) endpoint for your Lambda function. When you create a function URL, Lambda automatically generates a unique URL endpoint for you. Function URLs can be created for the latest version Lambda Functions, or Function Aliases (but not for Versions). Function URLs are dual stack-enabled, supporting IPv4 and IPv6, and cross-origin resource sharing (CORS) configuration. After you configure a function URL for your function, you can invoke your function through its HTTP(S) endpoint via a web browser, curl, Postman, or any HTTP client. To invoke a function using IAM authentication your HTTP client must support SigV4 signing. See the [Invoking Function URLs](https://docs.aws.amazon.com/lambda/latest/dg/urls-invocation.html) section of the AWS Lambda Developer Guide for more information on the input and output payloads of Functions invoked in this way. ### IAM-authenticated Function URLs To create a Function URL which can be called by an IAM identity, call `addFunctionUrl()`, followed by `grantInvokeFunctionUrl()`: ```ts // Can be a Function or an Alias declare const fn: lambda.Function; declare const myRole: iam.Role; const fnUrl = fn.addFunctionUrl(); fnUrl.grantInvokeUrl(myRole); new CfnOutput(this, 'TheUrl', { // The .url attributes will return the unique Function URL value: fnUrl.url, }); ``` Calls to this URL need to be signed with SigV4. ### Anonymous Function URLs To create a Function URL which can be called anonymously, pass `authType: FunctionUrlAuthType.NONE` to `addFunctionUrl()`: ```ts // Can be a Function or an Alias declare const fn: lambda.Function; const fnUrl = fn.addFunctionUrl({ authType: lambda.FunctionUrlAuthType.NONE, }); new CfnOutput(this, 'TheUrl', { value: fnUrl.url, }); ``` ### CORS configuration for Function URLs If you want your Function URLs to be invokable from a web page in browser, you will need to configure cross-origin resource sharing to allow the call (if you do not do this, your browser will refuse to make the call): ```ts declare const fn: lambda.Function; fn.addFunctionUrl({ authType: lambda.FunctionUrlAuthType.NONE, cors: { // Allow this to be called from websites on https://example.com. // Can also be ['*'] to allow all domain. allowedOrigins: ['https://example.com'], // More options are possible here, see the documentation for FunctionUrlCorsOptions }, }); ``` ### Invoke Mode for Function URLs Invoke mode determines how AWS Lambda invokes your function. You can configure the invoke mode when creating a Function URL using the invokeMode property ```ts declare const fn: lambda.Function; fn.addFunctionUrl({ authType: lambda.FunctionUrlAuthType.NONE, invokeMode: lambda.InvokeMode.RESPONSE_STREAM, }); ``` If the invokeMode property is not specified, the default BUFFERED mode will be used. ## Layers The `lambda.LayerVersion` class can be used to define Lambda layers and manage granting permissions to other AWS accounts or organizations. [Example of Lambda Layer usage](test/integ.layer-version.lit.ts) By default, updating a layer creates a new layer version, and CloudFormation will delete the old version as part of the stack update. Alternatively, a removal policy can be used to retain the old version: ```ts new lambda.LayerVersion(this, 'MyLayer', { removalPolicy: RemovalPolicy.RETAIN, code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), }); ``` ## Architecture Lambda functions, by default, run on compute systems that have the 64 bit x86 architecture. The AWS Lambda service also runs compute on the ARM architecture, which can reduce cost for some workloads. A lambda function can be configured to be run on one of these platforms: ```ts new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), architecture: lambda.Architecture.ARM_64, }); ``` Similarly, lambda layer versions can also be tagged with architectures it is compatible with. ```ts new lambda.LayerVersion(this, 'MyLayer', { removalPolicy: RemovalPolicy.RETAIN, code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), compatibleArchitectures: [lambda.Architecture.X86_64, lambda.Architecture.ARM_64], }); ``` ## Lambda Insights Lambda functions can be configured to use CloudWatch [Lambda Insights](https://docs.aws.amazon.com/AmazonCloudWatch/latest/monitoring/Lambda-Insights.html) which provides low-level runtime metrics for a Lambda functions. ```ts new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), insightsVersion: lambda.LambdaInsightsVersion.VERSION_1_0_98_0, }); ``` If the version of insights is not yet available in the CDK, you can also provide the ARN directly as so - ```ts const layerArn = 'arn:aws:lambda:us-east-1:580247275435:layer:LambdaInsightsExtension:14'; new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), insightsVersion: lambda.LambdaInsightsVersion.fromInsightVersionArn(layerArn), }); ``` If you are deploying an ARM_64 Lambda Function, you must specify a Lambda Insights Version >= `1_0_119_0`. ```ts new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', architecture: lambda.Architecture.ARM_64, code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), insightsVersion: lambda.LambdaInsightsVersion.VERSION_1_0_119_0, }); ``` ### Parameters and Secrets Extension Lambda functions can be configured to use the Parameters and Secrets Extension. The Parameters and Secrets Extension can be used to retrieve and cache [secrets](https://docs.aws.amazon.com/secretsmanager/latest/userguide/retrieving-secrets_lambda.html) from Secrets Manager or [parameters](https://docs.aws.amazon.com/systems-manager/latest/userguide/ps-integration-lambda-extensions.html) from Parameter Store in Lambda functions without using an SDK. ```ts import * as sm from 'aws-cdk-lib/aws-secretsmanager'; import * as ssm from 'aws-cdk-lib/aws-ssm'; const secret = new sm.Secret(this, 'Secret'); const parameter = new ssm.StringParameter(this, 'Parameter', { parameterName: 'mySsmParameterName', stringValue: 'mySsmParameterValue', }); const paramsAndSecrets = lambda.ParamsAndSecretsLayerVersion.fromVersion(lambda.ParamsAndSecretsVersions.V1_0_103, { cacheSize: 500, logLevel: lambda.ParamsAndSecretsLogLevel.DEBUG, }); const lambdaFunction = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', architecture: lambda.Architecture.ARM_64, code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), paramsAndSecrets, }); secret.grantRead(lambdaFunction); parameter.grantRead(lambdaFunction); ``` If the version of Parameters and Secrets Extension is not yet available in the CDK, you can also provide the ARN directly as so: ```ts import * as sm from 'aws-cdk-lib/aws-secretsmanager'; import * as ssm from 'aws-cdk-lib/aws-ssm'; const secret = new sm.Secret(this, 'Secret'); const parameter = new ssm.StringParameter(this, 'Parameter', { parameterName: 'mySsmParameterName', stringValue: 'mySsmParameterValue', }); const layerArn = 'arn:aws:lambda:us-east-1:177933569100:layer:AWS-Parameters-and-Secrets-Lambda-Extension:4'; const paramsAndSecrets = lambda.ParamsAndSecretsLayerVersion.fromVersionArn(layerArn, { cacheSize: 500, }); const lambdaFunction = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', architecture: lambda.Architecture.ARM_64, code: lambda.Code.fromAsset(path.join(__dirname, 'lambda-handler')), paramsAndSecrets, }); secret.grantRead(lambdaFunction); parameter.grantRead(lambdaFunction); ``` ## Event Rule Target You can use an AWS Lambda function as a target for an Amazon CloudWatch event rule: ```ts import * as events from 'aws-cdk-lib/aws-events'; import * as targets from 'aws-cdk-lib/aws-events-targets'; declare const fn: lambda.Function; const rule = new events.Rule(this, 'Schedule Rule', { schedule: events.Schedule.cron({ minute: '0', hour: '4' }), }); rule.addTarget(new targets.LambdaFunction(fn)); ``` ## Event Sources AWS Lambda supports a [variety of event sources](https://docs.aws.amazon.com/lambda/latest/dg/invoking-lambda-function.html). In most cases, it is possible to trigger a function as a result of an event by using one of the `add<Event>Notification` methods on the source construct. For example, the `s3.Bucket` construct has an `onEvent` method which can be used to trigger a Lambda when an event, such as PutObject occurs on an S3 bucket. An alternative way to add event sources to a function is to use `function.addEventSource(source)`. This method accepts an `IEventSource` object. The module __@aws-cdk/aws-lambda-event-sources__ includes classes for the various event sources supported by AWS Lambda. For example, the following code adds an SQS queue as an event source for a function: ```ts import * as eventsources from 'aws-cdk-lib/aws-lambda-event-sources'; import * as sqs from 'aws-cdk-lib/aws-sqs'; declare const fn: lambda.Function; const queue = new sqs.Queue(this, 'Queue'); fn.addEventSource(new eventsources.SqsEventSource(queue)); ``` The following code adds an S3 bucket notification as an event source: ```ts import * as eventsources from 'aws-cdk-lib/aws-lambda-event-sources'; import * as s3 from 'aws-cdk-lib/aws-s3'; declare const fn: lambda.Function; const bucket = new s3.Bucket(this, 'Bucket'); fn.addEventSource(new eventsources.S3EventSource(bucket, { events: [ s3.EventType.OBJECT_CREATED, s3.EventType.OBJECT_REMOVED ], filters: [ { prefix: 'subdir/' } ] // optional })); ``` The following code adds an DynamoDB notification as an event source filtering insert events: ```ts import * as eventsources from 'aws-cdk-lib/aws-lambda-event-sources'; import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; declare const fn: lambda.Function; const table = new dynamodb.Table(this, 'Table', { partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING, }, stream: dynamodb.StreamViewType.NEW_IMAGE, }); fn.addEventSource(new eventsources.DynamoEventSource(table, { startingPosition: lambda.StartingPosition.LATEST, filters: [lambda.FilterCriteria.filter({ eventName: lambda.FilterRule.isEqual('INSERT') })], })); ``` By default, Lambda will encrypt Filter Criteria using AWS managed keys. But if you want to use a self managed KMS key to encrypt the filters, You can specify the self managed key using the `filterEncryption` property. ```ts import * as eventsources from 'aws-cdk-lib/aws-lambda-event-sources'; import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; import { Key } from 'aws-cdk-lib/aws-kms'; declare const fn: lambda.Function; const table = new dynamodb.Table(this, 'Table', { partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING, }, stream: dynamodb.StreamViewType.NEW_IMAGE, }); // Your self managed KMS key const myKey = Key.fromKeyArn( this, 'SourceBucketEncryptionKey', 'arn:aws:kms:us-east-1:123456789012:key/<key-id>', ); fn.addEventSource(new eventsources.DynamoEventSource(table, { startingPosition: lambda.StartingPosition.LATEST, filters: [lambda.FilterCriteria.filter({ eventName: lambda.FilterRule.isEqual('INSERT') })], filterEncryption: myKey, })); ``` > Lambda requires allow `kms:Decrypt` on Lambda principal `lambda.amazonaws.com` to use the key for Filter Criteria Encryption. If you create the KMS key in the stack, CDK will automatically add this permission to the Key when you creates eventSourceMapping. However, if you import the key using function like `Key.fromKeyArn` then you need to add the following permission to the KMS key before using it to encrypt Filter Criteria ```json { "Version": "2012-10-17", "Statement": [ { "Effect": "Allow", "Principal": { "Service": "lambda.amazonaws.com" }, "Action": "kms:Decrypt", "Resource": "*" } ] } ``` ### Observability Customers can now opt-in to get enhanced metrics for their event source mapping that capture each stage of processing using the `MetricsConfig` property. The following code shows how to opt in for the enhanced metrics. ```ts import * as eventsources from 'aws-cdk-lib/aws-lambda-event-sources'; import * as dynamodb from 'aws-cdk-lib/aws-dynamodb'; declare const fn: lambda.Function; const table = new dynamodb.Table(this, 'Table', { partitionKey: { name: 'id', type: dynamodb.AttributeType.STRING, }, stream: dynamodb.StreamViewType.NEW_IMAGE, }); fn.addEventSource(new eventsources.DynamoEventSource(table, { startingPosition: lambda.StartingPosition.LATEST, metricsConfig: { metrics: [lambda.MetricType.EVENT_COUNT], } })); ``` See the documentation for the __@aws-cdk/aws-lambda-event-sources__ module for more details. ## Imported Lambdas When referencing an imported lambda in the CDK, use `fromFunctionArn()` for most use cases: ```ts const fn = lambda.Function.fromFunctionArn( this, 'Function', 'arn:aws:lambda:us-east-1:123456789012:function:MyFn', ); ``` The `fromFunctionAttributes()` API is available for more specific use cases: ```ts const fn = lambda.Function.fromFunctionAttributes(this, 'Function', { functionArn: 'arn:aws:lambda:us-east-1:123456789012:function:MyFn', // The following are optional properties for specific use cases and should be used with caution: // Use Case: imported function is in the same account as the stack. This tells the CDK that it // can modify the function's permissions. sameEnvironment: true, // Use Case: imported function is in a different account and user commits to ensuring that the // imported function has the correct permissions outside the CDK. skipPermissions: true, }); ``` `Function.fromFunctionArn()` and `Function.fromFunctionAttributes()` will attempt to parse the Function's Region and Account ID from the ARN. `addPermissions` will only work on the `Function` object if the Region and Account ID are deterministically the same as the scope of the Stack the referenced `Function` object is created in. If the containing Stack is environment-agnostic or the Function ARN is a Token, this comparison will fail, and calls to `Function.addPermission` will do nothing. If you know Function permissions can safely be added, you can use `Function.fromFunctionName()` instead, or pass `sameEnvironment: true` to `Function.fromFunctionAttributes()`. ```ts const fn = lambda.Function.fromFunctionName(this, 'Function', 'MyFn'); ``` ## Lambda with DLQ A dead-letter queue can be automatically created for a Lambda function by setting the `deadLetterQueueEnabled: true` configuration. In such case CDK creates a `sqs.Queue` as `deadLetterQueue`. ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('exports.handler = function(event, ctx, cb) { return cb(null, "hi"); }'), deadLetterQueueEnabled: true, }); ``` It is also possible to provide a dead-letter queue instead of getting a new queue created: ```ts import * as sqs from 'aws-cdk-lib/aws-sqs'; const dlq = new sqs.Queue(this, 'DLQ'); const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('exports.handler = function(event, ctx, cb) { return cb(null, "hi"); }'), deadLetterQueue: dlq, }); ``` You can also use a `sns.Topic` instead of an `sqs.Queue` as dead-letter queue: ```ts import * as sns from 'aws-cdk-lib/aws-sns'; const dlt = new sns.Topic(this, 'DLQ'); const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('// your code here'), deadLetterTopic: dlt, }); ``` See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/dlq.html) to learn more about AWS Lambdas and DLQs. ## Lambda with X-Ray Tracing ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('exports.handler = function(event, ctx, cb) { return cb(null, "hi"); }'), tracing: lambda.Tracing.ACTIVE, }); ``` See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/lambda-x-ray.html) to learn more about AWS Lambda's X-Ray support. ## Lambda with AWS Distro for OpenTelemetry layer To have automatic integration with XRay without having to add dependencies or change your code, you can use the [AWS Distro for OpenTelemetry Lambda (ADOT) layer](https://aws-otel.github.io/docs/getting-started/lambda). Consuming the latest ADOT layer can be done with the following snippet: ```ts import { AdotLambdaExecWrapper, AdotLayerVersion, AdotLambdaLayerJavaScriptSdkVersion, } from 'aws-cdk-lib/aws-lambda'; const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('exports.handler = function(event, ctx, cb) { return cb(null, "hi"); }'), adotInstrumentation: { layerVersion: AdotLayerVersion.fromJavaScriptSdkLayerVersion(AdotLambdaLayerJavaScriptSdkVersion.LATEST), execWrapper: AdotLambdaExecWrapper.REGULAR_HANDLER, }, }); ``` To use a different layer version, use one of the following helper functions for the `layerVersion` prop: * `AdotLayerVersion.fromJavaScriptSdkLayerVersion` * `AdotLayerVersion.fromPythonSdkLayerVersion` * `AdotLayerVersion.fromJavaSdkLayerVersion` * `AdotLayerVersion.fromJavaAutoInstrumentationSdkLayerVersion` * `AdotLayerVersion.fromGenericSdkLayerVersion` Each helper function expects a version value from a corresponding enum-like class as below: * `AdotLambdaLayerJavaScriptSdkVersion` * `AdotLambdaLayerPythonSdkVersion` * `AdotLambdaLayerJavaSdkVersion` * `AdotLambdaLayerJavaAutoInstrumentationSdkVersion` * `AdotLambdaLayerGenericSdkVersion` For more examples, see our [the integration test](test/integ.lambda-adot.ts). If you want to retrieve the ARN of the ADOT Lambda layer without enabling ADOT in a Lambda function: ```ts declare const fn: lambda.Function; const layerArn = lambda.AdotLambdaLayerJavaSdkVersion.V1_19_0.layerArn(fn.stack, fn.architecture); ``` When using the `AdotLambdaLayerPythonSdkVersion` the `AdotLambdaExecWrapper` needs to be `AdotLambdaExecWrapper.INSTRUMENT_HANDLER` as per [AWS Distro for OpenTelemetry Lambda Support For Python](https://aws-otel.github.io/docs/getting-started/lambda/lambda-python) ## Lambda with Profiling The following code configures the lambda function with CodeGuru profiling. By default, this creates a new CodeGuru profiling group - ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.PYTHON_3_9, handler: 'index.handler', code: lambda.Code.fromAsset('lambda-handler'), profiling: true, }); ``` The `profilingGroup` property can be used to configure an existing CodeGuru profiler group. CodeGuru profiling is supported for all Java runtimes and Python3.6+ runtimes. See [the AWS documentation](https://docs.aws.amazon.com/codeguru/latest/profiler-ug/setting-up-lambda.html) to learn more about AWS Lambda's Profiling support. ## Lambda with Reserved Concurrent Executions ```ts const fn = new lambda.Function(this, 'MyFunction', { runtime: lambda.Runtime.NODEJS_18_X, handler: 'index.handler', code: lambda.Code.fromInline('exports.handler = function(event, ctx, cb) { return cb(null, "hi"); }'), reservedConcurrentExecutions: 100, }); ``` https://docs.aws.amazon.com/lambda/latest/dg/invocation-recursion.html ## Lambda with SnapStart SnapStart is currently supported on Python 3.12, Python 3.13, .NET 8, and Java 11 and later [Java managed runtimes](https://docs.aws.amazon.com/lambda/latest/dg/lambda-runtimes.html). SnapStart does not support provisioned concurrency, Amazon Elastic File System (Amazon EFS), or ephemeral storage greater than 512 MB. After you enable Lambda SnapStart for a particular Lambda function, publishing a new version of the function will trigger an optimization process. See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/snapstart.html) to learn more about AWS Lambda SnapStart ```ts const fn = new lambda.Function(this, 'MyFunction', { code: lambda.Code.fromAsset(path.join(__dirname, 'handler.zip')), runtime: lambda.Runtime.JAVA_11, handler: 'example.Handler::handleRequest', snapStart: lambda.SnapStartConf.ON_PUBLISHED_VERSIONS, }); const version = fn.currentVersion; ``` ## AutoScaling You can use Application AutoScaling to automatically configure the provisioned concurrency for your functions. AutoScaling can be set to track utilization or be based on a schedule. To configure AutoScaling on a function alias: ```ts import * as autoscaling from 'aws-cdk-lib/aws-autoscaling'; declare const fn: lambda.Function; const alias = fn.addAlias('prod'); // Create AutoScaling target const as = alias.addAutoScaling({ maxCapacity: 50 }); // Configure Target Tracking as.scaleOnUtilization({ utilizationTarget: 0.5, }); // Configure Scheduled Scaling as.scaleOnSchedule('ScaleUpInTheMorning', { schedule: autoscaling.Schedule.cron({ hour: '8', minute: '0'}), minCapacity: 20, }); ``` [Example of Lambda AutoScaling usage](test/integ.autoscaling.lit.ts) See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/invocation-scaling.html) on autoscaling lambda functions. ## Log Group By default, Lambda functions automatically create a log group with the name `/aws/lambda/<function-name>` upon first execution with log data set to never expire. This is convenient, but prevents you from changing any of the properties of this auto-created log group using the AWS CDK. For example you cannot set log retention or assign a data protection policy. To fully customize the logging behavior of your Lambda function, create a `logs.LogGroup` ahead of time and use the `logGroup` property to instruct the Lambda function to send logs to it. This way you can use the full features set supported by Amazon CloudWatch Logs. ```ts import { LogGroup } from 'aws-cdk-lib/aws-logs'; const myLogGroup = new LogGroup(this, 'MyLogGroupWithLogGroupName', { logGroupName: 'customLogGroup', }); new lambda.Function(this, 'Lambda', { code: new lambda.InlineCode('foo'), handler: 'index.handler', runtime: lambda.Runtime.NODEJS_18_X, logGroup: myLogGroup, }); ``` Providing a user-controlled log group was rolled out to commercial regions on 2023-11-16. If you are deploying to another type of region, please check regional availability first. ## Lambda with Recursive Loop protection Recursive loop protection is to stop unintended loops. The customers are opted in by default for Lambda to detect and terminate unintended loops between Lambda and other AWS Services. The property can be assigned two values here, "Allow" and "Terminate". The default value is set to "Terminate", which lets the Lambda to detect and terminate the recursive loops. When the value is set to "Allow", the customers opt out of recursive loop detection and Lambda does not terminate recursive loops if any. See [the AWS documentation](https://docs.aws.amazon.com/lambda/latest/dg/invocation-recursion.html) to learn more about AWS Lambda Recusrive Loop Detection ```ts const fn = new lambda.Function(this, 'MyFunction', { code: lambda.Code.fromAsset(path.join(__dirname, 'handler.zip')), runtime: lambda.Runtime.JAVA_11, handler: 'example.Handler::handleRequest', recursiveLoop: lambda.RecursiveLoop.TERMINATE, }); ``` ### Legacy Log Retention As an alternative to providing a custom, user controlled log group, the legacy `logRetention` property can be used to set a different expiration period. This feature uses a Custom Resource to change the log retention of the automatically created log group. By default, CDK uses the AWS SDK retry options when creating a log group. The `logRetentionRetryOptions` property allows you to customize the maximum number of retries and base backoff duration. *Note* that a [CloudFormation custom resource](https://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-resource-cfn-customresource.html) is added to the stack that pre-creates the log group as part of the stack deployment, if it already doesn't exist, and sets the correct log retention period (never expire, by default). This Custom Resource will also create a log group to log events of the custom resource. The log retention period for this addtional log group is hard-coded to 1 day. *Further note* that, if the log group already exists and the `logRetention` is not set, the custom resource will reset the log retention to never expire even if it was configured with a different value. ## FileSystem Access You can configure a function to mount an Amazon Elastic File System (Amazon EFS) to a directory in your runtime environment with the `filesystem` property. To access Amazon EFS from lambda function, the Amazon EFS access point will be required. The following sample allows the lambda function to mount the Amazon EFS access point to `/mnt/msg` in the runtime environment and access the filesystem with the POSIX identity defined in `posixUser`. ```ts import * as ec2 from 'aws-cdk-lib/aws-ec2'; import * as efs from 'aws-cdk-lib/aws-efs'; // create a new VPC const vpc = new