Topic 1 Question 168
A developer is building a serverless application that is based on AWS Lambda. The developer initializes the AWS software development kit (SDK) outside of the Lambda handler function.
What is the PRIMARY benefit of this action?
Improves legibility and stylistic convention
Takes advantage of runtime environment reuse
Provides better error handling
Creates a new SDK instance for each invocation
ユーザの投票
コメント(2)
- 正解だと思う選択肢: B
The correct answer is (B).
Initializing the AWS SDK outside of the Lambda handler function takes advantage of runtime environment reuse. This means that the SDK only needs to be initialized once for all Lambda function invocations. This can improve application performance and efficiency.
👍 2Digo30sp2023/10/06 - 正解だと思う選択肢: B
B it is!
👍 1dilleman2023/10/11
シャッフルモード