In this post, I will show you how to implement a simple event-driven application using EventBrdige Pipes and Terraform. At the time of writing this post, EventBrdige Pipes resources are not available with Terraform AWS Provider, therefore I use Terraform AWS Cloud Control Provider (awscc). You can follow this link to learn more about EventBridge Pipes. Refer to the original article…
Category: Lambda
Using AWS Lambda with Amazon Aurora MySQL
Amazon Aurora is a fully managed relational database engine that is compatible with MySQL and PostgreSQL. In this article, I will explain how you can invoke an AWS Lambda function from an Amazon Aurora MySQL cluster with the native function lambda_sync or lambda_async . Refer to the original article that I published on https://duleendra.medium.com
Accessing a Cross-Account Amazon SQS Queue Using AWS Lambda
This post will show you how Lambda functions can consume messages from an SQS queue in a different AWS account. Refer to the original article that I published on https://duleendra.medium.com
Amazon EventBridge Custom Event Bus Example
We can use the AWS EventBridge event bus to receive events from various event sources such as AWS services, custom applications, SasS applications, etc. To do that, AWS EventBridge provides two types of event buses such as default and custom. In this example, I will show you how we can use a custom event bus to receive events….
AWS Lambda Event Filtering
Event Filtering AWS Lambda has provided a feature to filter events that come from Amazon SQS, Amazon Kinesis, and Amazon DynamoDB. With this feature, Lambda only sends the filtered events to the handler function. Refer to the original article that I published on https://duleendra.medium.com
Datadog Integration with AWS Lambda
Datadog is one of the best monitoring tools that can be used to monitor your cloud infrastructure. In this post, I will show you how we can use Datadog to monitor AWS Lambda functions. Refer to the original article that I published on https://duleendra.medium.com
Lambda Canary Based Deployment Using CodePipeline, CodeDeploy, and SAM
In this post, I will show you how we can deploy an AWS Lambda function using the “canary-based” deployment strategy. Refer to the original article that I published on https://duleendra.medium.com
CloudWatch Lamba Subscription Filter (CDK-Demo)
In this article, I want to show you how we can use the AWS CloudWatch subscription filter for filtering logs and forward them to a lambda function. Simple Usecase Filter critical app errors and send a real-time notification to a Slack channel with error information. Note that I use AWS CDK for creating the infrastructure….
Deploying a Lambda Function Using AWS CodePipeline
In this post, I will show you how we can deploy an AWS Lambda function using AWS CodePipeline. I use AWS SAM for creating the Lambda function and AWS CDK for creating the CodePipeline and its components. Refer to the original article that I published on https://duleendra.medium.com
Amazon SNS Message Filtering
How to filter messages published to Amazon SNS Topics Refer to the original article that I published on https://duleendra.medium.com