- Mastering AWS Lambda
- Yohan Wadia Udita Gupta
- 210字
- 2021-07-02 20:56:50
Conventions
In this book, you will find a number of text styles that distinguish between different kinds of information. Here are some examples of these styles and an explanation of their meaning. Code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles are shown as follows: "The describe-log-groups command will list all the log groups that are prefixed with /aws/lambda. "
A block of code is set as follows:
exports.myHandler = function(event, context, callback) {
console.log("value = " + event.key);
console.log("functionName = ", context.functionName);
callback(null, "Yippee! Something worked!");
};
When we wish to draw your attention to a particular part of a code block, the relevant lines or items are set in bold:
exports.myHandler = (event, context, callback) => {
console.log('remaining time =', context.getRemainingTimeInMillis());
console.log('functionName =', context.functionName);
console.log('AWSrequestID =', context.awsRequestId);
console.log('logGroupName =', context.logGroupName);
console.log('logStreamName =', context.logStreamName);
Any command-line input or output is written as follows:
# aws lambda list-functions
New terms and important words are shown in bold. Words that you see on the screen, for example, in menus or dialog boxes, appear in the text like this: "In the Review page, select the Create function option."
- AWS Serverless架構(gòu):使用AWS從傳統(tǒng)部署方式向Serverless架構(gòu)遷移
- jQuery從入門到精通 (軟件開發(fā)視頻大講堂)
- Visual Basic程序設(shè)計(jì)實(shí)驗(yàn)指導(dǎo)(第4版)
- 3D少兒游戲編程(原書第2版)
- Windows Phone 7.5:Building Location-aware Applications
- Geospatial Development By Example with Python
- Java并發(fā)編程:核心方法與框架
- Clojure Data Structures and Algorithms Cookbook
- INSTANT Lift Web Applications How-to
- PhoneGap 3.x Mobile Application Development Hotshot
- 信息學(xué)競(jìng)賽寶典:基礎(chǔ)算法
- Real-time Web Application Development using Vert.x 2.0
- Comprehensive Ruby Programming
- Go Programming Cookbook(Second Edition)
- UI設(shè)計(jì)參考手冊(cè)