Packaging your layer content
A Lambda layer is a .zip file archive that contains supplementary code or data. Layers usually contain library dependencies, a custom runtime, or configuration files.
This section explains how to properly package your layer content. For more conceptual information about layers and why you might consider using them, see Managing Lambda dependencies with layers.
The first step to creating a layer is to bundle all of your layer content into a .zip file archive. Because Lambda functions run on Amazon Linux, your layer content must be able to compile and build in a Linux environment.
To ensure that your layer content works properly in a Linux environment,
we recommend creating your layer content using a tool like
Docker
Layer paths for each Lambda runtime
When you add a layer to a function, Lambda loads the layer content into the
/opt
directory of that execution environment. For each Lambda runtime,
the PATH
variable already includes specific folder paths within the
/opt
directory. To ensure that Lambda picks up your layer content,
your layer .zip file should have its dependencies
in the following folder paths:
Runtime | Path |
---|---|
Node.js |
|
|
|
|
|
|
|
Python |
|
|
|
Java |
|
Ruby |
|
|
|
All runtimes |
|
|
The following examples show how you can structure the folders in your layer .zip archive.
For language-specific instructions on packaging, creating, and adding a layer, refer to the following pages:
We recommend against using layers to manage dependencies for Lambda functions written in Go and Rust. This is because Lambda functions written in these languages compile into a single executable, which you provide to Lambda when you deploy your function. This executable contains your compiled function code, along with all of its dependencies. Using layers not only complicates this process, but also leads to increased cold start times because your functions need to manually load extra assemblies into memory during the init phase.
To use external dependencies with Go and Rust Lambda functions, include them directly in your deployment package.