Community.OpenIddict.AmazonDynamoDB 3.1.0

dotnet add package Community.OpenIddict.AmazonDynamoDB --version 3.1.0
                    
NuGet\Install-Package Community.OpenIddict.AmazonDynamoDB -Version 3.1.0
                    
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="Community.OpenIddict.AmazonDynamoDB" Version="3.1.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Community.OpenIddict.AmazonDynamoDB" Version="3.1.0" />
                    
Directory.Packages.props
<PackageReference Include="Community.OpenIddict.AmazonDynamoDB" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Community.OpenIddict.AmazonDynamoDB --version 3.1.0
                    
#r "nuget: Community.OpenIddict.AmazonDynamoDB, 3.1.0"
                    
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
#:package Community.OpenIddict.AmazonDynamoDB@3.1.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Community.OpenIddict.AmazonDynamoDB&version=3.1.0
                    
Install as a Cake Addin
#tool nuget:?package=Community.OpenIddict.AmazonDynamoDB&version=3.1.0
                    
Install as a Cake Tool

OpenIddict.AmazonDynamoDB

Build Status codecov NuGet

A DynamoDB integration for OpenIddict.

Getting Started

You can install the latest version via Nuget:

> dotnet add package Community.OpenIddict.AmazonDynamoDB

Then you use the stores by calling UseDynamoDb on OpenIddictCoreBuilder:

services
    .AddOpenIddict()
    .AddCore(options => {
        options.UseDynamoDb()
            .Configure(options =>
            {
                options.BillingMode = BillingMode.PROVISIONED; // Default is BillingMode.PAY_PER_REQUEST
                options.ProvisionedThroughput = new ProvisionedThroughput
                {
                    ReadCapacityUnits = 5, // Default is 1
                    WriteCapacityUnits = 5, // Default is 1
                };
                options.UsersTableName = "CustomOpenIddictTable"; // Default is openiddict
            });
    }); 

Finally, you need to ensure that tables and indexes have been added:

OpenIddictDynamoDbSetup.EnsureInitialized(serviceProvider);

Or asynchronously:

await OpenIddictDynamoDbSetup.EnsureInitializedAsync(serviceProvider);

Tests

In order to run the tests, you need to have DynamoDB running locally on localhost:8000. This can easily be done using Docker and the following command:

docker run -p 8000:8000 amazon/dynamodb-local
Product Compatible and additional computed target framework versions.
.NET net8.0 is compatible.  net8.0-android was computed.  net8.0-browser was computed.  net8.0-ios was computed.  net8.0-maccatalyst was computed.  net8.0-macos was computed.  net8.0-tvos was computed.  net8.0-windows was computed.  net9.0 is compatible.  net9.0-android was computed.  net9.0-browser was computed.  net9.0-ios was computed.  net9.0-maccatalyst was computed.  net9.0-macos was computed.  net9.0-tvos was computed.  net9.0-windows was computed.  net10.0 was computed.  net10.0-android was computed.  net10.0-browser was computed.  net10.0-ios was computed.  net10.0-maccatalyst was computed.  net10.0-macos was computed.  net10.0-tvos was computed.  net10.0-windows was computed. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
3.1.0 194 10/28/2025
3.0.0 1,476 2/2/2025
2.2.1 848 7/8/2024
2.2.0 388 3/23/2024
2.1.0 762 1/21/2024
2.0.2 561 11/10/2023
2.0.1 200 10/29/2023
2.0.0 202 10/29/2023
1.0.3 196 10/28/2023
1.0.2 814 5/15/2023
1.0.1 701 1/28/2023
1.0.0 515 1/9/2023
0.1.4 580 10/16/2022
0.1.3 543 10/5/2022
0.1.2 526 10/5/2022
0.1.1 503 10/2/2022
0.1.0 521 10/2/2022