Trigger Lambda Function Using Amazon EventBridge and Configure Alert through AWS SNS email notifications for a simple Bitcoin Price tracker

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…

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.…

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…