mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
11 lines
175 B
YAML
11 lines
175 B
YAML
# Hello World for AWS Lambda
|
|
service: hello-world # Service Name
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs12.x
|
|
|
|
functions:
|
|
helloWorld:
|
|
handler: handler.helloWorldHandler
|