-
Notifications
You must be signed in to change notification settings - Fork 150
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature request: AWS Lambda Layers support #826
Comments
Lambda layers can be architecture-specific, if they contain native code. Assuming there's no native code in this library, it will be compatible with both For illustration, here's a lambda layer that only works with |
Thank you for your great work. |
Hi @idm-ryou, thanks for the feedback. While looking at the docs you should be able to see the package version at the top of the page (visible when you are at the top of the page): At the moment however, we have an issue in our release process that makes it so that library version & layer version shown in the docs are out of sync. For instance, at the moment our v1.3.0 documentation is showing Layer version 2 while it should show version 3. We are tracking work to fix the issue here #1124 |
Released in v1.3.0 |
|
Description of the feature request
Problem statement
Currently AWS Lambda Powertools for Python supports usage via a Lambda Layer. The TypeScript Powertools do not.
Summary of the feature
Lambda Layer is a .zip file archive that can contain additional code, pre-packaged dependencies, data, or configuration files. Layers promote code sharing and separation of responsibilities so that you can iterate faster on writing business logic.
This issue would include Lambda Powertools Lambda Layer using AWS Lambda Console, or your preferred deployment framework.
When using Layers, you can add Lambda Powertools as a dev dependency (or as part of your virtual env) to not impact the development process.
Additionally, Lambda Layers allow us to understand who uses this library in a non-intrusive way. This helps us justify and gain future investments for other Lambda Powertools languages.
Code examples
https://awslabs.github.io/aws-lambda-powertools-python/latest/#install
Benefits for you and the wider AWS community
A different way to install and leverage the library.
Describe alternatives you've considered
N/A
Additional context
N/A
Related issues, RFCs
N/A
The text was updated successfully, but these errors were encountered: