All Stories published by Developerworld on July 06, 2018
01
02
03
04
08
09
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31

AWS Lambda Guide — Serverless.yml Reference

Edit on github

Here is a list of all available properties in serverless.yml when the provider is set to aws.

service:  name: myService  awsKmsKeyArn: arn:aws:kms:us-east-1:XXXXXX:key/some-hash

AWS Lambda Guide — Functions

If you are using AWS as a provider, all functions inside the service are AWS Lambda functions.

#Configuration

All of the Lambda functions in your serverless service can be found in serverless.yml under the functions


AWS Lambda Guide — Installing The Serverless Framework

Serverless is a Node.js CLI tool so the first thing you need to do is to install Node.js on your machine.

Go to the official Node.js website, download and follow the installation instructions to install Node.js…


AWS Lambda Guide — Quick Start

Check out the following links for tutorial walkthroughs:

Or follow the steps below for creating & deploying a simple service and learning some…