AWS

How To Solve "Rate exceeded for operation 'AWS::CloudFront::Distribution'." Error? Paid Members Public
Recently at work, I had to deploy ~80 CloudFront instances, each with its own Certificate, pointing to one S3 bucket as its source, all in one CloudFormation file. I kept running into "Rate exceeded for operation AWS::CloudFront::Distribution'.". Let's learn how to fix it.

NServiceBus on AWS SNS: Learn How To Publish and Subscribe to Events Paid Members Public
Let's explore how to publish Events using NServiceBus. We will learn how to Publish Events with NServiceBus, subscribe to Events and how it works under the hood when using AWS SQS Transport.

How to Optimize Your DynamoDB Queries With Projection Expressions in .NET Paid Members Public
When reading data from a DynamoDB table, by default, it returns all of the attributes of the items. However, in some application scenarios, you might only require a subset of the attributes of the items. In these scenarios, you can use a ProjectionExpression to limit the item attributes returned as

Learn How to Map Complex .NET Types to DynamoDB using Custom Converters Paid Members Public
DynamoDB supports using custom types in your Documents. Based on your programming language, If there is no direct mapping for these types to Amazon DynamoDB types, you need to specify additional information on how to map them. Custom Converters allow specifying custom maps for these types in DynamoDB. In this

3 Different Ways To Do Data Pagination from Amazon DynamoDB Using .NET Paid Members Public
Learn how to use Dynamodb pagination to retrieve large amounts of data stored in the table.s.

5 Ways To Query Data From Amazon DynamoDB using .NET Paid Members Public
Querying is an essential operation in DynamoDB. It allows you to filter and select items in your database based on your application and user needs. When moving over to DynamoDB from more traditional relational databases like SQL Server, you must understand the different ways you can retrieve data in DynamoDB.

Why Should You Care About Lambda Lifecycle As A .NET Developer? Paid Members Public
The Lambda Lifecycle affects the way we write out Function code. Learn some of the dos and don'ts when building Lambda Functions in .NET because of how Lambda initializes the Function classes.

NServiceBus on AWS SQS: Learn How to Quickly Get Started Paid Members Public
NServiceBus is a messaging framework provided by Particular Software, which makes it quick and easy to build message-driven applications. Learn how to quickly get started by building a sender/receiver using NServiceBus on AWS.