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 the PATH
variable 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 for the following languages. The linked pages contain more information.