AWS

Serverless API Development Made Easy: Using AWS Lambda Annotations for CRUD Paid Members Public
Learn how to create a CRUD API Endpoint using AWS Lambda, API Gateway and the Annotations Framework. See how the Lambda Annotations framework does all the heavy lifting for us, and makes it easier to develop APIs.

Learn How AWS Lambda Annotations Framework Makes API Gateway Integration Easy. Paid Members Public
Let's learn what the Lambda Annotation Framework aims to solve and how it compares with older ways of building Lambda Functions. We will see this through an example of creating a simple API endpoint.

Batch Delete Item Operations In DynamoDB Using .NET Paid Members Public
DynamoDB's batch delete functionality allows deleting multiple items from one or more DynamoDB tables with a single API call. This feature is useful when you're dealing with data cleanup, archiving, or any scenario requiring mass deletion.

BatchWriteItem Operations In DynamoDB Using .NET Paid Members Public
Amazon DynamoDB's BatchWriteItem functionality allows you to insert multiple items to one or more DynamoDB tables using a single API call. This feature is particularly useful for scenarios involving data ingestion, bulk updates, or data cleanup tasks.

BatchGetItem Operations In DynamoDB Using .NET Paid Members Public
Amazon DynamoDB's BatchGetItem functionality allows you to retrieve multiple items from one or more DynamoDB tables using a single API call. This feature is useful when retrieving multiple items with known primary keys. It reduces the number of roundtrips to the database and optimizes performance.

How to Query Secondary Indexes Using DynamoDBContext From the .NET SDK? Paid Members Public
Learn how to use the High Level DynamoDBContext API to query Global and Local Secondary Indexes in DynamoDB from .NET applications.

.NET DynamoDB SDK: Understanding Table Name Conventions and DynamoDBTable Attribute Paid Members Public
The DynamoDB .NET SDK by default uses conventions to determine the Table name. However, it supports different options to configure and customize the name. Learn how to achieve this in this post.

Improving Query Performance in DynamoDB with Sparse Indexes and .NET Paid Members Public
A Sparse Index is a special type of Index, where the Index does not have an entry for every item in the base table. Sparse Indexes optimize storage and performance by selectively including only a subset of items from the base table. Learn how to use this to your advantage.