Have you ever wondered 🤔 how you can schedule Lambda functions in an easy way? well in many situations you need lambda functions running some background jobs in scheduled intervals or in specific days In this blog, will see how to tackle this task using Amazon EventBridge, from which we can easily…
Tag: Lambda Function
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…
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…
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.…
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.
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…
Extract Zip files in an S3 bucket using the Lambda function
How to extract Zip files from the S3 bucket to the target bucket using the Lambda function.
Amazon Alexa Skill using AWS Lambda
Building a custom Alexa skill using AWS Lambda.