Topic 1 Question 108
A developer is updating several AWS Lambda functions and notices that all the Lambda functions share the same custom libraries. The developer wants to centralize all the libraries, update the libraries in a convenient way, and keep the libraries versioned.
Which solution will meet these requirements with the LEAST development effort?
Create an AWS CodeArtifact repository that contains all the custom libraries.
Create a custom container image for the Lambda functions to save all the custom libraries.
Create a Lambda layer that contains all the custom libraries.
Create an Amazon Elastic File System (Amazon EFS) file system to store all the custom libraries.
ユーザの投票
コメント(5)
- 正解だと思う選択肢: C
the most efficient solution is to use a Lambda layer to store the common libraries, update them in one place, and reference them from each Lambda function that requires them.
👍 6MrTee2023/04/22 Why not CodeArtifact?
"CodeArtifact allows you to store artifacts using popular package managers and build tools like Maven, Gradle, npm, Yarn, Twine, pip, and NuGet. CodeArtifact can automatically fetch software packages on demand from public package repositories so you can access the latest versions of application dependencies."
👍 1Ryan10022023/05/07- 正解だと思う選択肢: C
It should be Create a Lambda layer.
👍 1loctong2023/05/14
シャッフルモード