A municipal Lambda deployment package omits a native library that exists on a developer's laptop, so production invocations crash on import even though local tests pass. What should the team ensure when preparing the artifact?
Select an answer to reveal the explanation.
Short Explanation
If it only works on your laptop, it is not packaged — Lambda's OS never saw that native .so. Bundle the dependency in the zip or a matching layer before you call it "deployed."
Full Explanation
Lambda execution environments do not include arbitrary native libraries from a developer's workstation. Deployment artifacts must include required dependencies in the zip or in a Lambda layer built for the target runtime and architecture. Assuming the managed runtime mirrors a laptop, relying on local virtualenv paths, or downloading unsigned native code at cold start are unreliable and insecure packaging practices.