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: docs/cdk.md
+2-2Lines changed: 2 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -38,12 +38,12 @@ All ASW Lambda function configurations are saved as constants at the `cdk.my_ser
38
38
### **Deployed Resources**
39
39
40
40
- AWS Cloudformation stack: **cdk.my_service.service_stack.py** which is consisted of one construct
41
-
- Construct: **cdk.my_service.service_construct.py** which includes:
41
+
- Construct: **cdk.my_service.api_construct.py** which includes:
42
42
-**Lambda Layer** - deployment optimization meant to be used with multiple handlers under the same API GW, sharing code logic and dependencies. You can read more about it in Yan - Cui's [blog](https://medium.com/theburningmonk-com/lambda-layer-not-a-package-manager-but-a-deployment-optimization-85ddcae40a96){:target="_blank" rel="noopener"}
43
43
-**Lambda Function** - The Lambda handler function itself. Handler code is taken from the service `folder`.
44
44
-**Lambda Role** - The role of the Lambda function.
45
45
-**API GW with Lambda Integration** - API GW with a Lambda integration POST /api/orders that triggers the Lambda function.
46
-
-**AWS DynamoDB table** - stores request data
46
+
-**AWS DynamoDB table** - stores request data. Created in its own construct: api_db_construct.py
0 commit comments