Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 2.35 KB

File metadata and controls

34 lines (27 loc) · 2.35 KB

Accessing DynamoDB items with the AWS SDK for .NET

The NuGet package AWSSDK.DynamoDBv2 contains 3 different APIs save and get items from tables. In our TODO list application we will use the Data Model API but we will briefly cover each of the 3 API to get an understanding what is available.

Name Namespace Description
Service Client
  • Amazon.DynamoDBv2
  • Amazon.DynamoDBv2.Model
The AmazonDynamoDBClient service client provides a 1 to 1 mapping with the service APIs.
Document Model
  • Amazon.DynamoDBv2.DocumentModel
Represents an item as a Document which is similar to dictionary. Recommended when the data stored for each item varies with different attributes.
Data Model
  • Amazon.DynamoDBv2.DataModel
Model your data as .NET objects and use DynamoDBContext object to serialize and deserialize the .NET objects into DynamoDB.

Continue on to next page: CRUD operations with Amazon DynamoDB Service Client