
Answer-first summary for fast verification
Answer: Implement Lambda layers for the libraries.
The best approach to manage shared custom libraries for multiple AWS Lambda functions with minimal development effort is to use Lambda layers. Lambda layers allow you to package, centrally manage, and version your code and libraries. They are specifically designed for sharing code across multiple Lambda functions, making it easy to update and maintain the libraries in a single place. This solution does not require the implementation of additional services or significant changes to existing workflows, making it the most efficient and effective option.
Author: LeetQuiz Editorial Team
Ultimate access to all questions.
A developer needs to manage shared custom libraries for multiple AWS Lambda functions efficiently, with minimal development effort. What is the best approach to centralize, update, and version these libraries?
A
Utilize AWS CodeArtifact to manage the libraries.
B
Develop a custom container image including the libraries.
C
Implement Lambda layers for the libraries.
D
Use Amazon EFS to store the libraries.
No comments yet.