在AWS Toolkit for Eclipse的用户指南中,我们能看到 无服务器项目 和 AWS Lambda,我按照指南分别
创建了两个项目。
1、无服务器项目:
package com.serverless.demo.function;
import com.amazonaws.services.lambda.runtime.Context;
import com.amazonaws.services.lambda.runtime.RequestHandler;
/**
* Lambda function that simply prints "Hello World" if the input String is not provided,
* otherwise, print "Hello " with the provided input String.
*/
public class HelloWorld implements RequestHandle

本文探讨了在AWS Toolkit for Eclipse中创建的无服务器项目和AWS Lambda项目之间的异同。尽管两者生成的代码、依赖和结构相似,部署位置相同,但文章试图揭示它们可能存在的本质区别。
最低0.47元/天 解锁文章
25

被折叠的 条评论
为什么被折叠?



