AWS

How To Build and Host ASP NET Core Applications on AWS Lambda Functions Paid Members Public
This article is sponsored by AWS and is part of my AWS Series. AWS Lambda is a compute service that lets you run code without provisioning or managing servers. You can build application APIs on Lambda Function with API Gateways (REST or HTTP API) or Function URL’s. But what

How To Secure and Authenticate AWS Lambda Function URLs Paid Members Public
This article is sponsored by AWS and is part of my AWS Series. In a previous blog post, Function URLs - Quick and Easy way to Invoke AWS Lambda Functions over HTTP, we learned how to expose and invoke Lambda functions over an HTTP endpoint. We enabled the Function URL

Function URLs - Quick and Easy way to Invoke AWS Lambda Functions over HTTP Paid Members Public
A Function URL is a dedicated endpoint for your Lambda function. Learn how to enable Function URLs and build an API using .NET Lambda Function.

SNS→Lambda Or SNS→SQS→Lambda Paid Members Public
Should you be processing messages directly from SNS to Lambda or via an SQS Queue? Learn the disadvantages of directly processing messages from SNS and how you can solve those by introducing an SQS Queue in the middle.

Amazon SNS and AWS Lambda Triggers in .NET Paid Members Public
Learn how to process SNS messages from AWS Lambda Function. We will learn how to set up and trigger a .NET Lambda Function using SNS, understand scaling and lambda concurrency and how to handle exceptions when processing messages.

How to Handle Exceptions When Processing SQS Messages in .NET Lambda Function Paid Members Public
Learn how to handle exceptions, configure Dead Letter Queue, re-drive messages from Amazon SQS and how to enable batch error processing from a .NET Lambda Function.

Amazon SQS and AWS Lambda Triggers in .NET Paid Members Public
Learn how to process SQS messages from AWS Lambda Function. We will learn how to set up and trigger a .NET Lambda Function using SQS and the various configurations associated.

Amazon S3 and AWS Lambda Triggers in .NET Paid Members Public
Amazon S3 raises event notifications when Objects are created and modified. Learn how to use this to trigger Lambda Functions in .NET and the different configuration associated with processing the notification messages.