mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
230 B
YAML
15 lines
230 B
YAML
# web-api NodeJS example for AWS Lambda
|
|
service: web-api
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs4.3
|
|
|
|
functions:
|
|
getHello:
|
|
handler: handler.getHelloWorld
|
|
events:
|
|
- http:
|
|
path: hello
|
|
method: get
|