Community.OpenIddict.AmazonDynamoDB 3.0.0

dotnet add package Community.OpenIddict.AmazonDynamoDB --version 3.0.0
                    
NuGet\Install-Package Community.OpenIddict.AmazonDynamoDB -Version 3.0.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.0.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.0.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.0.0
                    
#r "nuget: Community.OpenIddict.AmazonDynamoDB, 3.0.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.
#addin nuget:?package=Community.OpenIddict.AmazonDynamoDB&version=3.0.0
                    
Install Community.OpenIddict.AmazonDynamoDB as a Cake Addin
#tool nuget:?package=Community.OpenIddict.AmazonDynamoDB&version=3.0.0
                    
Install Community.OpenIddict.AmazonDynamoDB 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 AddDynamoDbStores on OpenIddictBuilder:

services
    .AddOpenIddict()
    .AddCore()
    .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.0.0 420 2/2/2025
2.2.1 740 7/8/2024
2.2.0 309 3/23/2024
2.1.0 175 1/21/2024
2.0.2 500 11/10/2023
2.0.1 146 10/29/2023
2.0.0 137 10/29/2023
1.0.3 141 10/28/2023
1.0.2 720 5/15/2023
1.0.1 600 1/28/2023
1.0.0 421 1/9/2023
0.1.4 471 10/16/2022
0.1.3 428 10/5/2022
0.1.2 418 10/5/2022
0.1.1 399 10/2/2022
0.1.0 428 10/2/2022