In this exercise, you use postman to hit the demo application(storefront) APIs which are written using the Python Django REST framework. For this exercise, I have used Azure Cloud Service and a similar methodology can be followed for AWS. Prerequisites You have to complete hop1 Azure and hop2 Azure Why…
Category: Serverless Computing
Articles about services that can be used for serverless cloud applications.
Scheduling Amazon Athena Query using AWS Lambda, EventBridge, and Boto3
How to schedule AWS Athena queries using Amazon EventBridge, AWS Lambda, and Boto3 by AWS Python SDK
Serverless Mass Emailing with AWS Lambda
AWS Lambda is a robust event-driven platform for serverless use-cases, one of which may be mass emailing. We will walk through the creation of such a function on AWS. We want to facilitate this sequence of events: A user uploads a .csv file with email data to cloud storage (we’ll…
Segregating files in AWS S3 Bucket using Lambda
Overview There are 5 steps to fulfil the exercise Create an S3 bucket. Create a Lambda function and add an s3 trigger to it. Update the S3 event notifications. Creating IAM roles to access and alter S3 bucket objects using lambda. Implement the logic to segregate files in the s3…
Manual way of creating StoreFront APIs using Postman collection
Back to project Creating/Adding Request to collection Common Steps for Every Request If you highlight the collection you created, you can see an ellipses icon. Click on the ellipses icon, and you will see a menu which has an “add request” option in it. Click on it. JWT Token API…
AWS Serverless : API Gateway using Lambda
Topics Covered in this BLOG 1.What is an API ? 2.What is AWS API Gateway? 3.Who uses API Gateway? 4.Building an API Gateway using Lambda API API stands for “Application Programming Interface.” It is a set of rules and protocols that define how two or more software applications can interact…
Connecting to AWS Athena Database using Python
AWS Athena is a service that lets you build databases on and query the data from the data files stored on S3 storage buckets
Azure Logic Apps to create an automated workflow to implement RSS feed of a website to email account.
Summary: In this blog we are going to create an automated workflow that integrates two services, an RSS feed for a website and an email account using Azure Logic Apps. What is Azure Logic Apps? Azure Logic Apps offers low-code/no-code tools for you to create highly scalable integration solutions for…
Scheduling AWS Lambda Functions by configuring the CloudWatch Events, monitoring through CloudWatch Metrics and CloudWatch Logs.
The blog deals with the concepts of AWS Lambda function trigger by configuring the CloudWatch(EventBridge) events.
Timer Trigger Operation ⏲️
Objective: To understand the working of Timer Trigger. In addition to building and invoking a python function schedule to print every 15s. Prerequisite: Python 3.8 – Python 3.10 (Python 3.11 is not supported yet.) Azure Core Tools – Download azure core tools from here VS Code Step 1: Open VS…