The name of the handler function exported from your entry file.
This should match the name of the function exported in your entry file that will be invoked by AWS Lambda.
OptionalruntimeThe Node.js runtime environment to use for the Lambda function.
Defaults to NODEJS_20_X.
OptionalmemoryThe amount of memory, in MB, allocated to your Lambda function.
Any number divisible by 64 between 128 and 10240 (10GB),
Defaults to 128.
OptionaltimeoutThe maximum time (in seconds) that the Lambda function can run before it is terminated by AWS.
Defaults to 30 seconds.
OptionalenvironmentKey-value pairs that are set as environment variables for the Lambda function.
These can be accessed in your handler code using process.env.
OptionalconcurrentThe maximum number of concurrent executions for the Lambda function.
This limits the number of instances of the function that can be running at the same time.
OptionalinlineInline Lambda code. (Mostly used just for testing...)
OptionalbundlingAdditional bundling options to customize the esbuild bundling process.
These options will be merged with the default bundling configuration.
OptionalpropsAny other available props to configure your Lambda.
The file path to the entry file for your Lambda function's handler, relative to the root of your project.
This is the TypeScript or JavaScript file that exports the handler function.