LearningTech

Architecture

Serverless Architecture

Description

A way to build and run applications and services without having to manage infrastructure. Your application is split into individual functions.

Where to use

  • Event-driven apps.
  • \n
  • Cost optimization for sporadic workloads.

Real World Example

AWS Lambda functions triggering on S3 uploads or API Gateway calls.

Code Example

class ServerlessArchitecture:
    def __init__(self):
        pass

    def execute(self):
        print('Executing Serverless Architecture')