Skip to content

Latest commit

 

History

History
30 lines (26 loc) · 713 Bytes

File metadata and controls

30 lines (26 loc) · 713 Bytes
technology Serverless
domain Architecture
level Senior/Architect
version Latest
tags
serverless
architecture
best-practices
architecture
ai_role Senior Serverless Expert
last_updated 2026-03-29

Serverless - Data Flow

Request and Event Lifecycle

sequenceDiagram
    participant Client
    participant API_Gateway
    participant LambdaFunction
    participant DynamoDB

    Client->>API_Gateway: HTTP Request
    API_Gateway->>LambdaFunction: Trigger Execution
    LambdaFunction->>DynamoDB: Persist Data
    DynamoDB-->>LambdaFunction: Ack
    LambdaFunction-->>API_Gateway: Return
    API_Gateway-->>Client: HTTP Response
Loading

Constraints

  • Functions must be stateless.