mirror of
https://github.com/serverless/serverless.git
synced 2026-01-25 15:07:39 +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)
|