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