Luke Wyman
08/17/2021, 9:22 PMFunctionProps
has an attribute called bundle
which can take a FunctionBundlePythonProps
with this interface:
export interface FunctionBundlePythonProps {
readonly installCommands?: string[];
}
What are those installCommands
all about? The AWS Lambda documentation for Python discusses using either a zip file or a Docker image to deploy. How might the installCommands
play ball with either or both of those?Frank
installCommands
to customize how you want to installing the python dependencies.Frank
pip install
, and installCommands
lets u override that.