AWS

Setting Up AWS CDK with .NET for Seamless LocalStack and AWS Deployments Paid Members Public
Let's learn how to use CDK to deploy and manage resources in both LocalStack and AWS accounts. We will use the same CDK code base to deploy to both.

How to Use LocalStack for Seamless AWS Development in .NET Paid Members Public
LocalStack is a fully functional local AWS cloud stack that lets you emulate AWS services directly on your machine. Let's learn how to set up and run your .NET application locally on LocalStack.

AWS CDK For The .NET Developer: How To Easily Get Started Paid Members Public
AWS CDK simplifies Cloud Infrastructure management. CDK lets you define AWS resources using first-class programming concepts. It translates your code into AWS CloudFormation templates, which can be used to provision AWS resources for your application. Let's get started using .NET and C#.

A Step-by-Step Guide to AWS Message Processing with Amazon SQS in .NET Paid Members Public
The AWS Message Processing Framework for .NET is an AWS-native toolkit for building .NET applications with messaging services like SQS and EventBridge. Let's learn how to start using it when creating .NET applications on AWS.

AWS Lambda and .NET 8: Enhancing Serverless Performance with Native AOT Paid Members Public
Let's quickly review what's new and what you need to know when building your Lambda Functions on .NET 8.

C# Yield Return Statement: A Deep Dive Paid Members Public
Iterator methods are methods that create a source for an enumeration. The yield method is used to define an iterator method. While you can implement the IEnumerable interface, iterators makes it much more easier with the yield statement. Let's learn more about this.

Exploring Amazon S3 Conditional Operations From .NET Application Paid Members Public
Amazon S3 now supports conditional requests. You can use conditional requests to add preconditions to your S3 operations. If the precondition is not met it will result in the S3 operation failing. Let’s learn about Conditional Reads and Writes in Amazon S3 and how to use it from .NET

A Beginner's Guide to MassTransit and RabbitMQ in ASP NET Paid Members Public
MassTransit is a powerful .NET library for building distributed systems. Let's learn how to set up MassTransit using RabbitMQ transport from an ASP NET application. We will also learn the default queue topology MassTransit sets up on RabbitMQ transport.