Hola! Cloud Computing Clan (CCC), In this blog, I intend in walking you through building serverless API with Azure Functions. Before we go into the practical stuff, let us first understand what Azure Functions are. What is an Azure Function? Azure Functions allows for the effective execution of small pieces…
Tag: Serverless Computing
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…
Lambda function triggered by an S3 PUT event to sort XML files in an S3 bucket
Serverless functions allow code to be delivered without you designating any infrastructure for the code to be hosted on. AWS Lambda is a FaaS (Function as a Service) platform that allows you to construct serverless functions. Go, Java, Ruby, Python2 and Python3 are just a few of the popular programming languages that AWS Lambda supports. In this blog, we will be using Python3.
Creating Automated Image Resizing with Python and Serverless Functions
In today’s digital world, image processing and manipulation are becoming more critical. Resizing images to fit different designs, applications, and other needs is often necessary. Manual resizing images can be a tedious and time-consuming task. Fortunately, there is a way to automate the process using serverless technology and Python.
Write Serverless Logic Using Azure Functions
Serverless computing enables you to create and maintain applications and services without thinking about servers. It can be compared to a microservice or function as a service that is housed on a cloud computing platform. Azure Functions is a serverless application platform. It gives programmers the ability to host business…