mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
15 lines
232 B
YAML
15 lines
232 B
YAML
service: aws-nodejs
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs6.10
|
|
|
|
functions:
|
|
iot1:
|
|
handler: handler.iot1
|
|
events:
|
|
- iot:
|
|
sql: "SELECT * FROM 'mybutton'"
|
|
- iot:
|
|
sql: "SELECT * FROM 'weather'"
|