APF.Core.Clean.Aws 10.0.0.2-Beta-01

This is a prerelease version of APF.Core.Clean.Aws.
dotnet add package APF.Core.Clean.Aws --version 10.0.0.2-Beta-01
                    
NuGet\Install-Package APF.Core.Clean.Aws -Version 10.0.0.2-Beta-01
                    
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="APF.Core.Clean.Aws" Version="10.0.0.2-Beta-01" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="APF.Core.Clean.Aws" Version="10.0.0.2-Beta-01" />
                    
Directory.Packages.props
<PackageReference Include="APF.Core.Clean.Aws" />
                    
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 APF.Core.Clean.Aws --version 10.0.0.2-Beta-01
                    
#r "nuget: APF.Core.Clean.Aws, 10.0.0.2-Beta-01"
                    
#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 APF.Core.Clean.Aws@10.0.0.2-Beta-01
                    
#: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=APF.Core.Clean.Aws&version=10.0.0.2-Beta-01&prerelease
                    
Install as a Cake Addin
#tool nuget:?package=APF.Core.Clean.Aws&version=10.0.0.2-Beta-01&prerelease
                    
Install as a Cake Tool

Core.Clean.Aws

Core.Clean.Aws is a package that provides infrastructure-level implementations and service integrations with Amazon Web Services (AWS). It serves as a package that can be used only in the Infrastructure layer of any microservice.

This package depends on Core.Clean.Common for its abstractions and other dependencies, and also has an indirect dependency on Core.Clean.Dormancy.

Projects

src/Core.Clean.Aws

  • Core.Clean.Aws

tests/Core.Clean.Aws.Tests

  • Core.Clean.Aws.Tests

Purpose

  • Enables the application and domain layers of a microservice to remain free of direct AWS dependencies by exposing abstractions through Core.Clean.Common and implementing them here.
  • Centralizes AWS service integrations (S3, SNS, SQS, DynamoDB, Secrets Manager) and cross-cutting concerns (encryption, token validation, notifications, audit logging) so consuming microservices don't duplicate SDK setup or repository boilerplate.

Features

  • Infrastructure-level package — should only be referenced by the Infrastructure layer of a microservice.
  • S3, SNS, SQS & DynamoDB — abstractions and implementations for these services (S3Service, SnsService, SqsService, DynamoDbContextFactory), plus a DynamoDB context and repository base.
  • DynamoDB base entity & repository (Beta v11+)DynamoDbRepositoryBase and a base entity to standardize DynamoDB access patterns; nullable reference types are enabled.
  • Secrets Manager configuration integrationAddWithSecretsManager extension pulls configuration from appsettings.json, environment variables, and AWS Secrets Manager (via Kralizek.Extensions.Configuration), with prefix-based secret filtering and key remapping (/:, __:).
  • Singleton AWS SDK client for S3 — registered via AddAWSService<IAmazonS3> with dual-stack endpoint support, region resolved from the AWS_DEFAULT_REGION environment variable.

Getting Started

  1. Clone the repo
  2. Navigate to the root directory
  3. Run:
dotnet build
dotnet test

Register AWS dependencies in a microservice (Infrastructure layer)

using Aurionpro.PaymentFramework.Core.Clean.Aws.Extensions;

var builder = WebApplication.CreateBuilder(args);

// Registers S3, SNS, SQS, DynamoDB, encryption, token validation,
// event dispatching, audit logging, and notification services
builder.Services.AddCoreCleanAws();

Product Compatible and additional computed target framework versions.
.NET net10.0 is compatible.  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 (2)

Showing the top 2 NuGet packages that depend on APF.Core.Clean.Aws:

Package Downloads
APF.Core.Clean.ApiGateway

Package Description

APF.Core.Clean.Otp

Package Description

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last Updated
10.0.0.2-Beta-01 7 8/19/2026
10.0.0.1 86 8/14/2026
10.0.0-Beta-1 1,852 6/16/2026
10.0.0-Beta-09 120 8/13/2026
10.0.0-Beta-08 71 8/12/2026
10.0.0-Beta-07 74 8/12/2026
10.0.0-Beta-06 417 8/3/2026
10.0.0-Beta-05 282 7/8/2026
10.0.0-Beta-04 221 7/2/2026
10.0.0-Beta-03 111 6/24/2026
10.0.0-Beta-02 133 6/17/2026
8.0.0.8-Beta-01 40 8/17/2026
8.0.0.7 117 7/30/2026
8.0.0.7-Beta-01 161 7/23/2026
8.0.0.6 226 7/20/2026
8.0.0.6-Beta-1 353 7/18/2026
8.0.0.5 285 7/10/2026
8.0.0.5-Beta-1 108 7/9/2026
8.0.0.4 2,299 5/21/2026
8.0.0.4-Beta-4 125 5/20/2026
Loading failed

# Changelog

## 2026-08-18 - 10.0.0.2-Beta-01

- Replaced obsolete Redis cache implementations with a shared keyed cache service.

## 2026-08-14 - 10.0.0.1

-  Published the Stable .net 10 compatible version

## 2026-08-13 10.0.0.0-Beta-09
- Updated README.md file