From c2f0bf5ef4e6f9d6d5db73e94bad132a2ed6a46c Mon Sep 17 00:00:00 2001 From: hrchu Date: Mon, 21 Jun 2021 12:16:24 +0800 Subject: [PATCH] Update README.md --- aws-python-scheduled-cron/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws-python-scheduled-cron/README.md b/aws-python-scheduled-cron/README.md index cef402ffd..e36a636d9 100644 --- a/aws-python-scheduled-cron/README.md +++ b/aws-python-scheduled-cron/README.md @@ -16,7 +16,7 @@ This template demonstrates how to develop and deploy a simple cron-like service ## Schedule event type -This examples defines two functions, `cron` and `secondCron`, both of which are triggered by an event of `schedule` type, which is used for configuring functions to be executed at specific time or in specific intervals. For detailed information about `schedule` event, please refer to corresponding section of Serverless [docs](https://serverless.com/framework/docs/providers/aws/events/schedule/). +This examples defines two functions, `rateHandler` and `cronHandler`, both of which are triggered by an event of `schedule` type, which is used for configuring functions to be executed at specific time or in specific intervals. For detailed information about `schedule` event, please refer to corresponding section of Serverless [docs](https://serverless.com/framework/docs/providers/aws/events/schedule/). When defining `schedule` events, we need to use `rate` or `cron` expression syntax.