How to deploy dependencies package for Lambda function using CDK?

0

Hi, I have a lambda function with some package dependencies. I am using AWS Lambda construct library to deploy the lambda function using AWS CDK with TypeScript. Please suggest me the proper way to deploy these package dependencies for my lambda function through CDK.

Thank you!!

1 個回答
0

Hi, the right to do that is to use Lambda Layers: https://docs.aws.amazon.com/lambda/latest/dg/configuration-layers.html

A layer is a .zip file archive that can contain additional code or data. A layer can 
contain libraries, a custom runtime, data, or configuration files. Layers promote 
code sharing and separation of responsibilities so that you can iterate faster on 
writing business logic.

You may also want to read this post; https://aws.amazon.com/blogs/compute/using-lambda-layers-to-simplify-your-development-process/

It will allow you to cleanly separate your code from its dependencies in terms of deployments, etc.

Best,

Didier

profile pictureAWS
專家
已回答 9 個月前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南