We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c1a51b7 commit 1846744Copy full SHA for 1846744
supplemental-docs/AWS_LAMBDA.md
@@ -22,6 +22,12 @@ exports.handler = function (event) {
22
23
## Creating an AWS Lambda layer
24
25
+With layers, you can create a shared set of dependencies for your AWS Lambda functions that can be imported
26
+as if they were included in the functions themselves.
27
+
28
+The benefits of doing this include finer control over the version of the AWS SDK you are using, and not
29
+having to upload the AWS SDK as part of your individual functions' code.
30
31
This information was taken from https://docs.aws.amazon.com/lambda/latest/dg/nodejs-layers.html.
32
33
### Create the content for your Layer
0 commit comments