Skip to content

Commit 1846744

Browse files
authored
docs: update AWS_LAMBDA.md
1 parent c1a51b7 commit 1846744

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

supplemental-docs/AWS_LAMBDA.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,12 @@ exports.handler = function (event) {
2222

2323
## Creating an AWS Lambda layer
2424

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+
2531
This information was taken from https://docs.aws.amazon.com/lambda/latest/dg/nodejs-layers.html.
2632

2733
### Create the content for your Layer

0 commit comments

Comments
 (0)