How to Upload File to S3 using Python AWS Lambda

Lambda runs your code on a high-availability compute infrastructure and performs all of the administration of the compute resources, including server and operating system maintenance, capacity provisioning and automatic scaling, and logging. Three components of AWS Lambda: A function. This is the actual code that performs the task. A configuration.…

Using API Gateway to trigger a Lambda function to send messages to the Queue

In this blog, I’ll show you how to incorporate several AWS services into a simple, serverless workflow. The idea is to create an SQS queue, then using an HTTP API to trigger a Lambda function that sends messages to the queue. What is serverless computing? Serverless computing is a means of offering on-demand backend services. Users may use…

How to trigger a lambda function when a DynamoDB table is modified

This blog will take you through step-by-step instructions on how to trigger a lambda function when the records in the DynamoDB table are updated, created, or deleted on AWS. To follow along with this tutorial, you would need to set up an account with AWS. Instructions to set up an…