From 1c4daf1a8fbf518ef16e915677ec648c9da51d76 Mon Sep 17 00:00:00 2001 From: misostack Date: Tue, 2 Jan 2024 03:38:30 +0000 Subject: [PATCH] deploy: f176a7c05ade8630fc5944a010e24ec19d3609a1 --- .../index.html | 49 +++++++++++++++++++ 1 file changed, 49 insertions(+) diff --git a/post/aws-series-serverless-computing/index.html b/post/aws-series-serverless-computing/index.html index 4eb7a2dc..50a66a62 100644 --- a/post/aws-series-serverless-computing/index.html +++ b/post/aws-series-serverless-computing/index.html @@ -157,6 +157,55 @@

Lambda Function Quotas

image

image

+

Serverless Application Repository

+ +

SAM

+
+

Serverless Application Model

+
+
AWSTemplateFormatVersion: 2010-09-09
+Transform: AWS::Serverless-2016-10-31
+Resources:
+  getAllItemsFunction:
+    Type: AWS::Serverless::Function
+    Properties:
+      Handler: src/get-all-items.getAllItemsHandler
+      Runtime: nodejs12.x
+      Events:
+        Api:
+          Type: HttpApi
+          Properties:
+            Path: /
+            Method: GET
+    Connectors:
+      MyConn:
+        Properties:
+        Destination:
+          Id: SampleTable
+          Permissions:
+            - Read
+  SampleTable:
+    Type: AWS::Serverless::SimpleTable
+

Publish and Deploy

+

Publish

+ +

Deploy

+
systemdesign aws