How To Easily Get Started with AWS Lambda Tracing in .NET using Powertools Members Public

Powertools for AWS Lambda (.NET) Tracing, is an opinionated wrapper for AWS X-Ray .NET SDK, aimed to reduce the overhead of performing common tracing tasks. Let’s explore how to easily get started with using the Lambda Powertools Tracing library when building AWS Lambda Functions in .NET.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Add to Apple Wallet from Your .NET Application: A Step-by-Step Guide Members Public

The iOS Wallet app allows users to manage payment cards, boarding passes, tickets, gift cards, and other passes. Let's learn how to set up, build, and distribute Apple Wallet passes from a .NET application.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
Dotnet

How To Set Up Dependency Injection in Lambda Functions Using Annotations Framework Members Public

Learn how to set up Dependency Injection when building Lambda Functions using the Annotatios framework.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Serverless API Development Made Easy: Using AWS Lambda Annotations for CRUD 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Learn How AWS Lambda Annotations Framework Makes API Gateway Integration Easy. 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

Batch Delete Item Operations In DynamoDB Using .NET 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

BatchWriteItem Operations In DynamoDB Using .NET 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS

BatchGetItem Operations In DynamoDB Using .NET 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.

Rahul Pulikkot Nath
Rahul Pulikkot Nath
AWS