LoginSignup
18
14

More than 5 years have passed since last update.

AWS API GatewayとAWS Lambdaで、HelloWorldを作成する

Last updated at Posted at 2016-04-22

Lambda

lamdba001.png

lamdba002.png

gate001.png

HelloWorld.js
console.log('Loading event');

exports.handler = function(event, context) {
    context.done(null, {message:'Hello from AWS Lambda!'}); 
};

gateway001.png

lamdba005.png

lamdba006.png

gate003.png

helloPlug001.png

API Gateway

hello001.png

hello002.png

hello003.png

hello005.png

hello006.png

hello007.png

hello008.png

hello009.png

hello011.png

hello012.png

hello013.png

hello014.png

hello016.png

api023.png

18
14
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
18
14