-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.j2
More file actions
38 lines (30 loc) · 1.74 KB
/
Copy pathREADME.j2
File metadata and controls
38 lines (30 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[](https://github.com/phzietsman/aws-lambda-layer-common/actions/workflows/auto-readme.yml)
[](https://github.com/phzietsman/aws-lambda-layer-common/actions/workflows/python-general.yml)
[](https://github.com/phzietsman/aws-lambda-layer-common/actions/workflows/python-database.yml)
[](https://github.com/phzietsman/aws-lambda-layer-common/actions/workflows/python-datawrangling.yml)
# Lambda layers
Commonly used libraries packaged as lambda layers.
## Using 3rd party layers
Use caution when including a third party layer in your application. To verify the content of a layer you can download the content and manually inspect it:
```bash
URL=$(aws lambda get-layer-version --layer-name $LAYER_ARN --version-number $LAYER_VERSION --query Content.Location --output text)
curl $URL -o layer.zip
```
# Supported runtimes
## python3
### General
{% for arn in commonpythonlibraries %} {{arn}}
{% endfor %}
### Databases
{% for arn in commonpythonlibrariesdatabase %} {{arn}}
{% endfor %}
### Data Wrangling
{% for arn in commonpythonlibrariesdatawrangling %} {{arn}}
{% endfor %}
## node
### General
{% for arn in commonnodelibraries %} {{arn}}
{% endfor %}
### Data Wrangling
{% for arn in commonnodelibrariesdatawrangling %} {{arn}}
{% endfor %}