Azure function with an HTTP trigger

In this blog we will learn how to Create the Http Trigger Azure Function in Azure Portal. What is an Azure Function? Azure Functions is a serverless computing service, hosted in the Microsoft Azure public cloud. It was designed to speed up and simplify application development. The cloud provider handles…

How To Create A Serverless REST API Gateway With Python And AWS Lambda

In this article, we’re going to create a REST API gateway endpoint which is going to invoke a lambda function and return JSON back to the client by doing the following:  Creating a API Gateway and Lambda function. Establishing a connection between Lambda function and API gateway. Managing access to…

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…