Best of AWS LambdaNovember 2023

  1. 1
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Learning AWS Lambda, API Gateway, and S3 by Building Your Own QR Code Generation API

    This tutorial teaches how to create a custom QR code generator API using AWS Lambda, API Gateway, and S3. It provides step-by-step instructions for creating an S3 bucket, creating a Lambda function, and integrating an API Gateway to the Lambda function. The tutorial also includes code snippets and a sample website for testing the API.

  2. 2
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Uploading Large Files to AWS S3 Using Multipart Upload from Frontend

    This article explains the process of uploading large files to AWS S3 using multipart upload from the frontend. It covers the setup of Lambda functions, IAM configuration for S3 access, and provides code examples for initiating, completing, and canceling uploads.

  3. 3
    Article
    Avatar of awsplainenglishAWS in Plain English·3y

    Introduction to Event-Driven Architectures

    Event-driven architectures utilize events to trigger actions in real time. AWS Lambda, DynamoDB, and API Gateway are key components of this architecture. It offers scalability, flexibility, and real-time responsiveness.

  4. 4
    Article
    Avatar of awstipAWS Tip·3y

    Serverless

    Serverless is a concept where developers only need to worry about the code and not the underlying architecture. In serverless, services like AWS Lambda handle the allocation of resources, deployment, and scaling automatically. The drawbacks of using a monolith include continuous running of machines, manual configuration, code deployment and management, and the need to scale up or down depending on user traffic. Serverless eliminates these concerns and charges on a per invocation basis. The code deployed on serverless platforms is in a sleep state until a user visits the website, at which point it switches to a start state and runs line by line before returning the response.