Serverless DynamoDB, S3, Lambda
Status: Work in Progress
Overview Infrastructure
We have three main resource components:
- A Bucket where incoming objects aks files be put
- A Lambda handler which gets the put event
- The Table where the handler will write items
The components are decoupled with the AWS Systems Manager (SSM) Parameter Store and environment variables.
Overview App
sequenceDiagram
Sender->>bucket: PutObject
bucket->>Function: PutObjectEvent
Function->>Table: PutItem
Quick Walktrough
1 Create Infrastructure
2 Test
3 Destroy
See also
Source
See the full source on github.
Sources