How to extract Zip files from the S3 bucket to the target bucket using the Lambda function.
Category: Serverless Computing
Articles about services that can be used for serverless cloud applications.
DynamoDB using Python SDK
In this blog post we will look at the working of the DynamoDB using Python SDK Boto3. I will be also covering the overview of DynamoDB and accessing the Dynamo DB using AWS Console, AWS CLI and finally through Python SDK. Also, we would be seeing a AWS service called…
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…
Amazon Alexa Skills Kit SDK using Python
To build our own skill using Alexa Skills Kit SDK using Python.
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…
Working with Azure Timer Trigger function and Power Query
Hello, today we’ll be looking at creating a Timer Trigger function in Azure to capture RSS Feed data and display the captured information in Excel using Power Query. Here are the list of things required before we get started: Valid Azure subscription Working Virtual Machine with Python and VS Code…
How to build serverless API with Azure Function
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…
Call an API with AWS Lambda and Python SDK
Do you have an API that is called regularly? AWS Lambda functions have the ability to call an API on a regular schedule. What if you need to store the data behind that API too? Well, Lambda can also help store your data in s3 for the long term. Using…
Reading data from text file in S3 and storing in DynamoDB using Lambda function
We will be learning on how to read data from text file stored in S3 bucket with the help of lambda function and then we will store those values in our DynamoDB. Before starting with the process I will be telling you overview of S3 bucket, DynamoDB and lambda function.…
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…