AWS CLI
Lambda Commands
Deploy and manage serverless functions. Learn to create, update, and invoke Lambda functions from the command line.
6 commands
Pro Tips
Use 'aws lambda invoke --log-type Tail' to get execution logs with the response.
Package dependencies with 'zip -r' and update with 'aws lambda update-function-code'.
Use Lambda layers for shared code/dependencies across multiple functions.
Common Mistakes
Lambda has execution time limits (15 min max). Design functions for short execution.