mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
177 B
YAML
15 lines
177 B
YAML
service: aws-nodejs
|
|
|
|
configValidationMode: error
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs16.x
|
|
|
|
functions:
|
|
hello:
|
|
handler: handler.hello
|
|
|
|
package:
|
|
artifact: artifact.zip
|