mirror of
https://github.com/serverless/serverless.git
synced 2026-01-18 14:58:43 +00:00
12 lines
156 B
YAML
12 lines
156 B
YAML
service: cron-example
|
|
|
|
provider:
|
|
name: aws
|
|
runtime: nodejs4.3
|
|
|
|
functions:
|
|
cron:
|
|
handler: handler.run
|
|
events:
|
|
- schedule: rate(1 minute)
|