You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-4Lines changed: 6 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -24,8 +24,6 @@
24
24
</p>
25
25
<!-- markdownlint-restore -->
26
26
27
-
28
-
29
27
## Overview
30
28
31
29
This module creates a Lambda function that automatically warms up other Lambda functions based on specified tags. It uses EventBridge Scheduler to trigger the warming process at regular intervals.
| environment | Current environment, e.g. dev, stage, prod | string | "default" |
110
110
| lambda_function_name | Name of the Lambda function used for prewarming | string | "lambda-warmer" |
111
-
| lambda_schedule_expression | EventBridge schedule expression for triggering the Lambda warmer | string | "rate(5 minutes)" |
111
+
| lambda_schedule_expression |[EventBridge schedule expression](https://docs.aws.amazon.com/scheduler/latest/UserGuide/schedule-types.html) for triggering the Lambda warmer | string | "rate(5 minutes)" |
112
112
| scheduler_max_retry_attempts | Maximum retry attempts for the EventBridge scheduler target | number | 0 |
113
+
| timeout | Timeout for the Lambda function in seconds | number | 10 |
114
+
| memory_size | Memory size for the Lambda function | number | 128 |
113
115
| prewarm_tag_key | The tag key to identify functions that need prewarming | string | "Prewarm" |
114
116
| prewarm_tag_value | The expected value of the tag for functions that need prewarming | string | "true" |
115
-
| invocation_type | The invocation type of the Lambda Warmer function (Event / RequestResponse) | string | "Event" |
117
+
| invocation_type | The [invocation type](https://docs.aws.amazon.com/lambda/latest/api/API_Invoke.html#API_Invoke_RequestSyntax) of the Lambda Warmer function (Event / RequestResponse) | string | "Event" |
0 commit comments