Audit.NET.DynamoDB 27.0.1

There is a newer version of this package available.
See the version list below for details.
dotnet add package Audit.NET.DynamoDB --version 27.0.1
                    
NuGet\Install-Package Audit.NET.DynamoDB -Version 27.0.1
                    
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="Audit.NET.DynamoDB" Version="27.0.1" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Audit.NET.DynamoDB" Version="27.0.1" />
                    
Directory.Packages.props
<PackageReference Include="Audit.NET.DynamoDB" />
                    
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 Audit.NET.DynamoDB --version 27.0.1
                    
#r "nuget: Audit.NET.DynamoDB, 27.0.1"
                    
#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 Audit.NET.DynamoDB@27.0.1
                    
#: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=Audit.NET.DynamoDB&version=27.0.1
                    
Install as a Cake Addin
#tool nuget:?package=Audit.NET.DynamoDB&version=27.0.1
                    
Install as a Cake Tool

Audit.NET.DynamoDB

Amazon Dynamo DB provider for Audit.NET library (An extensible framework to audit executing operations in .NET).

Store the audit events in Dynamo DB tables using the AWSSDK.DynamoDBv2 library.

Install

NuGet Package To install the package run the following command on the Package Manager Console:

PM> Install-Package Audit.NET.DynamoDB

NuGet Status NuGet Count

Usage

Please see the Audit.NET Readme

Configuration

Set the static Audit.Core.Configuration.DataProvider property to set the Dynamo DB data provider, or call the UseDynamoDB method on the fluent configuration. This should be done before any AuditScope creation, i.e. during application startup.

For example:

Audit.Core.Configuration.DataProvider = new DynamoDataProvider()
{
    Client = new Lazy<IAmazonDynamoDB>(() => new AmazonDynamoDBClient(new AmazonDynamoDBConfig() 
    { 
        ServiceURL = "http://localhost:8000" 
    })),
    TableNameBuilder = ev => "MyTable"
};

Or even shorter using the constructor overload that accepts a fluent API:

Audit.Core.Configuration.DataProvider = new DynamoDataProvider(config => config
    .UseUrl("http://localhost:8000")
    .Table("MyTable"));

Or by using the global setup extension UseDynamoDB():

Audit.Core.Configuration.Setup()
    .UseDynamoDB(config => config
        .UseUrl("http://localhost:8000")
        .Table(ev => ev.EventType));

You can provide the table name setting as a string or as a function of the Audit Event.

Provider Options

  • Client: The DynamoDB client creator AmazonDynamoDBClient.
  • TableNameBuilder: A function of the audit event that returns the Table Name to use.
  • CustomAttributes: A dictionary with additional fields to be included in the document and as custom fields on the audit event.

Fluent API Methods

The provider options can be set with a fluent API described by the following methods:

Connection level
  • WithClient(): Use the given DynamoDB client instance (AmazonDynamoDBClient).
  • UseConfig(): Alternative to WithClient(), to use a DynamoDB client with the given settings (AmazonDynamoDBConfig).
  • UseUrl(): Alternative to use a DynamoDB client only specifying the service URL.
Table level
  • Table(): To specify the table name (as a string or a function of the audit event).
Attributes level
  • SetAttribute(): To specify additional top-level attributes on the document before saving.

Query events

This provider implements GetEvent and GetEventAsync methods to obtain an audit event by id:

var event = dynamoDataProvider.GetEvent((Primitive)1234);

The eventId parameter on the generic GetEvent(object eventId) must be of type Primitive, DynamoDBEntry or an array of any of these two types. The first (or only) element must be the Hash key, and the second element should be the range key (or NULL if not using a range).

There are more convenient overloads of the GetEvent/GetEventAsync methods that accepts the Primitives without needing to cast the parameters:

// Get event with the given HASH and RANGE
var event = dynamoDataProvider.GetEvent("A001-005283", 2018);
// Get event with the given HASH
var event = dynamoDataProvider.GetEvent("A001-005283");

Constraints

This provider has the following constraints:

  • The table to store the audit events must exists on DynamoDB.
  • Its indexes must consist of top-level properties of the audit event. (Note you can add properties to the AuditEvent as Custom Fields with the SetAttribute() method on the provider configuration)

The following is an example of a table creation using the AWSSDK.DynamoDBv2 library:

var config = new AmazonDynamoDBConfig() { ServiceURL = "http://localhost:8000" };
var client = new AmazonDynamoDBClient(config);

await client.CreateTableAsync(new CreateTableRequest()
{
    TableName = "AuditEvents",
    KeySchema = new List<KeySchemaElement>()
    {
        new KeySchemaElement("EventId", KeyType.HASH),
        new KeySchemaElement("EventType", KeyType.RANGE)
    },
    AttributeDefinitions = new List<AttributeDefinition>()
    {
        new AttributeDefinition("EventId", ScalarAttributeType.S),
        new AttributeDefinition("EventType", ScalarAttributeType.S)
    },
    ProvisionedThroughput = new ProvisionedThroughput(1, 1)
});

In this case, the primary key is defined as a Hash and a Range key, with EventId being the hash, and EventType being the range. Both must be top-level properties of the Audit Event, but since the EventId is not a built-in property, you can configure it as a Custom Field:

Audit.Core.Configuration.Setup()
    .UseDynamoDB(config => config
        .UseUrl(url)
        .Table("AuditEvents")
        .SetAttribute("EventId", ev => Guid.NewGuid()));

Or you can use a global Custom Action instead with the same outcome:

Audit.Core.Configuration.AddCustomAction(ActionType.OnScopeCreated, scope =>
{
    scope.SetCustomField("EventId", Guid.NewGuid());
});
Product Compatible and additional computed target framework versions.
.NET net5.0 was computed.  net5.0-windows was computed.  net6.0 is compatible.  net6.0-android was computed.  net6.0-ios was computed.  net6.0-maccatalyst was computed.  net6.0-macos was computed.  net6.0-tvos was computed.  net6.0-windows was computed.  net7.0 was computed.  net7.0-android was computed.  net7.0-ios was computed.  net7.0-maccatalyst was computed.  net7.0-macos was computed.  net7.0-tvos was computed.  net7.0-windows was computed.  net8.0 was computed.  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 was computed.  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. 
.NET Core netcoreapp2.0 was computed.  netcoreapp2.1 was computed.  netcoreapp2.2 was computed.  netcoreapp3.0 was computed.  netcoreapp3.1 was computed. 
.NET Standard netstandard2.0 is compatible.  netstandard2.1 was computed. 
.NET Framework net461 was computed.  net462 is compatible.  net463 was computed.  net47 was computed.  net471 was computed.  net472 was computed.  net48 was computed.  net481 was computed. 
MonoAndroid monoandroid was computed. 
MonoMac monomac was computed. 
MonoTouch monotouch was computed. 
Tizen tizen40 was computed.  tizen60 was computed. 
Xamarin.iOS xamarinios was computed. 
Xamarin.Mac xamarinmac was computed. 
Xamarin.TVOS xamarintvos was computed. 
Xamarin.WatchOS xamarinwatchos 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
31.0.2 213 10/2/2025
31.0.1 338 8/28/2025
31.0.0 196 8/22/2025
30.1.3 217 8/19/2025
30.1.2 4,523 8/14/2025
30.1.1 223 8/13/2025
30.0.2 613 6/26/2025
30.0.1 255 5/29/2025
30.0.0 257 5/27/2025
29.0.1 356 5/8/2025
29.0.0 4,417 5/6/2025
28.0.0 235 5/5/2025
27.5.3 501 4/23/2025
27.5.2 528 4/9/2025
27.5.1 222 4/4/2025
27.5.0 1,204 3/5/2025
27.4.1 1,269 2/9/2025
27.4.0 15,949 1/29/2025
27.3.3 3,230 1/21/2025
27.3.2 3,365 12/11/2024
27.3.1 187 12/10/2024
27.3.0 243 12/8/2024
27.2.0 9,051 11/23/2024
27.1.1 385 10/28/2024
27.1.0 2,876 10/24/2024
27.0.3 1,918 9/25/2024
27.0.2 263 9/19/2024
27.0.1 1,300 9/4/2024
27.0.0 217 9/3/2024
26.0.1 3,298 8/22/2024
26.0.0 809 7/19/2024
25.0.7 321 7/4/2024
25.0.6 366 6/24/2024
25.0.5 2,593 6/18/2024
25.0.4 18,514 3/24/2024
25.0.3 260 3/13/2024
25.0.2 219 3/12/2024
25.0.1 316 2/28/2024
25.0.0 235 2/16/2024
24.0.1 243 2/12/2024
24.0.0 201 2/12/2024
23.0.0 683 12/14/2023
22.1.0 300 12/9/2023
22.0.2 405 12/1/2023
22.0.1 329 11/16/2023
22.0.0 253 11/14/2023
21.1.0 504 10/9/2023
21.0.4 344 9/15/2023
21.0.3 179,595 7/9/2023
21.0.2 321 7/6/2023
21.0.1 2,701 5/27/2023
21.0.0 31,711 4/15/2023
20.2.4 2,763 3/27/2023
20.2.3 461 3/17/2023
20.2.2 467 3/14/2023
20.2.1 484 3/11/2023
20.2.0 455 3/7/2023
20.1.6 3,500 2/23/2023
20.1.5 830 2/9/2023
20.1.4 512 1/28/2023
20.1.3 41,227 12/21/2022
20.1.2 505 12/14/2022
20.1.1 487 12/12/2022
20.1.0 525 12/4/2022
20.0.4 955 11/30/2022
20.0.3 933 10/28/2022
20.0.2 591 10/26/2022
20.0.1 639 10/21/2022
20.0.0 1,173 10/1/2022
19.4.1 3,699 9/10/2022
19.4.0 640 9/2/2022
19.3.0 637 8/23/2022
19.2.2 2,110 8/11/2022
19.2.1 699 8/6/2022
19.2.0 863 7/24/2022
19.1.4 14,562 5/23/2022
19.1.3 691 5/22/2022
19.1.2 716 5/18/2022
19.1.1 747 4/28/2022
19.1.0 689 4/10/2022
19.0.7 738 3/13/2022
19.0.6 742 3/7/2022
19.0.5 22,378 1/28/2022
19.0.4 727 1/23/2022
19.0.3 829 12/14/2021
19.0.2 577 12/11/2021
19.0.1 1,305 11/20/2021
19.0.0 4,177 11/11/2021
19.0.0-rc.net60.2 293 9/26/2021
19.0.0-rc.net60.1 363 9/16/2021
18.1.6 1,849 9/26/2021
18.1.5 719 9/7/2021
18.1.4 619 9/6/2021
18.1.3 669 8/19/2021
18.1.2 689 8/8/2021
18.1.1 678 8/5/2021
18.1.0 761 8/1/2021
18.0.1 683 7/30/2021
18.0.0 801 7/26/2021
17.0.8 4,863 7/7/2021
17.0.7 997 6/16/2021
17.0.6 710 6/5/2021
17.0.5 2,035 5/28/2021
17.0.4 850 5/4/2021
17.0.3 733 5/1/2021
17.0.2 681 4/22/2021
17.0.1 659 4/18/2021
17.0.0 705 3/26/2021
16.5.6 692 3/25/2021
16.5.5 651 3/23/2021
16.5.4 787 3/9/2021
16.5.3 1,347 2/26/2021
16.5.2 694 2/23/2021
16.5.1 680 2/21/2021
16.5.0 688 2/17/2021
16.4.5 702 2/15/2021
16.4.4 686 2/5/2021
16.4.3 684 1/27/2021
16.4.2 699 1/22/2021
16.4.1 782 1/21/2021
16.4.0 670 1/11/2021
16.3.3 757 1/8/2021
16.3.2 749 1/3/2021
16.3.1 775 12/31/2020
16.3.0 677 12/30/2020
16.2.1 722 12/27/2020
16.2.0 1,362 10/13/2020
16.1.5 18,122 10/4/2020
16.1.4 824 9/17/2020
16.1.3 920 9/13/2020
16.1.2 805 9/9/2020
16.1.1 831 9/3/2020
16.1.0 867 8/19/2020
16.0.3 929 8/15/2020
16.0.2 907 8/9/2020
16.0.1 903 8/8/2020
16.0.0 829 8/7/2020
15.3.0 927 7/23/2020
15.2.3 981 7/14/2020
15.2.2 1,742 5/19/2020
15.2.1 870 5/12/2020
15.2.0 898 5/9/2020
15.1.1 877 5/4/2020
15.1.0 921 4/13/2020
15.0.5 1,006 3/18/2020
15.0.4 900 2/28/2020
15.0.3 890 2/26/2020
15.0.2 995 1/20/2020
15.0.1 940 1/10/2020
15.0.0 925 12/17/2019
14.9.1 8,774 11/30/2019
14.9.0 896 11/29/2019
14.8.1 936 11/26/2019
14.8.0 892 11/20/2019
14.7.0 24,927 10/9/2019
14.6.6 906 10/8/2019
14.6.5 945 9/27/2019
14.6.4 942 9/21/2019
14.6.3 965 8/12/2019
14.6.2 975 8/3/2019
14.6.1 980 8/3/2019
14.6.0 947 7/26/2019
14.5.7 991 7/18/2019
14.5.6 987 7/10/2019
14.5.5 959 7/1/2019
14.5.4 993 6/17/2019
14.5.3 1,026 6/5/2019
14.5.2 1,007 5/30/2019
14.5.1 997 5/28/2019
14.5.0 915 5/24/2019
14.4.0 985 5/22/2019
14.3.4 1,035 5/14/2019
14.3.3 1,015 5/9/2019
14.3.2 998 4/30/2019
14.3.1 1,042 4/27/2019
14.3.0 1,030 4/24/2019
14.2.3 998 4/17/2019
14.2.2 1,028 4/10/2019
14.2.1 1,004 4/5/2019
14.2.0 999 3/16/2019
14.1.1 1,062 3/8/2019
14.1.0 1,135 2/11/2019
14.0.4 1,131 1/31/2019
14.0.3 1,126 1/22/2019
14.0.2 1,157 12/15/2018
14.0.1 1,174 11/29/2018
14.0.0 1,181 11/19/2018
13.3.0 1,200 11/16/2018
13.2.2 1,174 11/15/2018
13.2.1 1,206 11/13/2018
13.2.0 1,168 10/31/2018
13.1.5 1,234 10/31/2018
13.1.4 1,247 10/25/2018
13.1.3 1,214 10/18/2018
13.1.2 1,284 9/12/2018
13.1.1 1,250 9/11/2018
13.1.0 1,315 9/11/2018
13.0.0 1,296 8/29/2018
12.3.6 1,279 8/29/2018