- Mastering AWS Lambda
- Yohan Wadia Udita Gupta
- 165字
- 2021-07-02 20:56:54
The Lambda programming model
So far we have seen that certain applications can be broken down into one or more simple nuggets of code called as functions and uploaded to AWS Lambda for execution. Lambda then takes care of provisioning the necessary resources to run your function along with other management activities such as auto-scaling of your functions, their availability, and so on. So what exactly are we supposed to do in all this? A developer basically has three tasks to perform when it comes to working with Lambda--writing the code, packaging it for deployment, and finally monitoring its execution and fine-tuning.
In this section, we are going to explore the different components that actually make up a Lambda function by understanding what AWS calls as a programming model or a programming pattern. Currently, AWS officially supports Node.js, Java, Python, and C# as the programming languages for writing Lambda functions, with each language following a generic programming pattern that comprises of the following concepts.
- 極簡算法史:從數學到機器的故事
- 自己動手寫搜索引擎
- Vue.js 3.x從入門到精通(視頻教學版)
- JavaScript Unlocked
- Spring Boot+Spring Cloud+Vue+Element項目實戰:手把手教你開發權限管理系統
- Magento 2 Development Cookbook
- C語言程序設計
- Visual C++數字圖像處理技術詳解
- 用Python實現深度學習框架
- Unity 2018 Shaders and Effects Cookbook
- OpenGL Data Visualization Cookbook
- C#程序設計教程(第3版)
- OpenCV with Python By Example
- Everyday Data Structures
- C++ System Programming Cookbook