Deploying Lambda Functions with Lambda layers using CDK

Madeesha’s Tech Space
ITNEXT
Published in
2 min readDec 3, 2020

--

Serverless deployment needs to import libraries and dependencies into the Lambda functions. So the easiest way to import those third party dependencies to your function is to use Lamda Layers. Today I am going to show you how to use this lambda layer inside your CDK code.

The example code showing below python CDK, but you can use any supported language of CDK to…

--

--