[AWS Lab] Lambda Invocation via Polling – SQS

In this lab, we will learn how a lambda function can be invoked via Polling.

  • Overview
  • Source: SQS
    • Create a queue and a dead-letter queue (DLQ)
  • Target: Lambda – Function
    • logs the received message
    • does not return any value
    • configures the trigger
    • Python
Continue reading “[AWS Lab] Lambda Invocation via Polling – SQS”

[AWS Lab] Asynchronous Lambda Invocation – SNS

In this lab, we will learn how to invoke a lambda function asynchronously from Amazon SNS.

  • Overview
  • Source: SNS
    • Create a topic
  • Target: Lambda – Function
    • logs the received event
    • does not return any value
    • subscribes the SNS topic
    • Python
Continue reading “[AWS Lab] Asynchronous Lambda Invocation – SNS”

[AWS Lab] Synchronous Lambda Invocation – API Gateway

In this lab, we will learn how to invoke a lambda function synchronously.

Overview

  • Source: API Gateway – HTTP API
    • Route: GET /greet/{name}
  • Target: Lambda – Function
    • Returns the greeting message
    • Python
Continue reading “[AWS Lab] Synchronous Lambda Invocation – API Gateway”

[AWS] Amplify

AWS Amplify is a set of services and tools that help developers build secure, scalable full stack applications.

Amplify includes an open-source framework with use-case-centric libraries and a powerful toolchain to create and add cloud-based features to your application, and a web-hosting service to deploy static web applications.

https://aws.amazon.com/amplify/
Continue reading “[AWS] Amplify”