Foundatio.AWS
13.0.4
Prefix Reserved
dotnet add package Foundatio.AWS --version 13.0.4
NuGet\Install-Package Foundatio.AWS -Version 13.0.4
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="Foundatio.AWS" Version="13.0.4" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Foundatio.AWS" Version="13.0.4" />
<PackageReference Include="Foundatio.AWS" />
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 Foundatio.AWS --version 13.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
#r "nuget: Foundatio.AWS, 13.0.4"
#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 Foundatio.AWS@13.0.4
#: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=Foundatio.AWS&version=13.0.4
#tool nuget:?package=Foundatio.AWS&version=13.0.4
The NuGet Team does not provide support for this client. Please contact its maintainers for support.
Pluggable foundation blocks for building loosely coupled distributed apps.
โจ Why Choose Foundatio?
- ๐ Pluggable implementations - Swap Redis, Azure, AWS, or in-memory with no code changes
- ๐งช Developer friendly - In-memory implementations for fast local development and testing
- ๐ DI native - Built for Microsoft.Extensions.DependencyInjection
- ๐ฏ Interface-first - Code against abstractions, not implementations
- โก Production ready - Battle-tested in high-scale applications
- ๐ Consistent APIs - Same patterns across caching, queues, storage, and more
๐งฑ Core Building Blocks
| Feature | Description |
|---|---|
| Caching | In-memory, Redis, and hybrid caching with automatic invalidation |
| Queues | Reliable message queuing with Redis, Azure, AWS SQS |
| Locks | Distributed locking and throttling |
| Messaging | Pub/sub with Redis, RabbitMQ, Kafka, Azure Service Bus |
| Jobs | Background job processing with queue integration |
| File Storage | Unified file API for disk, S3, Azure Blob, and more |
| Resilience | Retry policies, circuit breakers, and timeouts |
๐ Quick Start
dotnet add package Foundatio.AWS
// Queuing (SQS)
IQueue<WorkItem> queue = new SQSQueue<WorkItem>(o => o
.ConnectionString("serviceurl=http://localhost:4566"));
await queue.EnqueueAsync(new WorkItem { Data = "Hello" });
var entry = await queue.DequeueAsync();
// Messaging (SQS)
IMessageBus messageBus = new SQSMessageBus(o => o
.ConnectionString("serviceurl=http://localhost:4566"));
await messageBus.PublishAsync(new MyMessage { Data = "Hello" });
// File Storage (S3)
IFileStorage storage = new S3FileStorage(o => o
.ConnectionString("serviceurl=http://localhost:4566")
.Bucket("my-bucket"));
await storage.SaveFileAsync("docs/readme.txt", "Hello World");
๐ฆ Provider Implementations
| Provider | Caching | Queues | Messaging | Storage | Locks |
|---|---|---|---|---|---|
| In-Memory | โ | โ | โ | โ | โ |
| Redis | โ | โ | โ | โ | โ |
| Azure Storage | โ | โ | |||
| Azure Service Bus | โ | โ | |||
| AWS (S3/SQS/SNS) | โ | โ | โ | ||
| RabbitMQ | โ | ||||
| Kafka | โ | ||||
| Minio | โ | ||||
| Aliyun | โ | ||||
| SFTP | โ |
๐ Learn More
Core Features
- Getting Started - Installation and setup
- Caching - In-memory, Redis, and hybrid caching with invalidation
- Queues - FIFO message delivery with lock renewal and retry policies
- Locks - Distributed locking with null handling patterns
- Messaging - Pub/sub with size limits and notification patterns
- File Storage - Unified file API across providers
- Jobs - Background job processing and hosted service integration
Advanced Topics
- Resilience - Retry policies, circuit breakers, and timeouts
- Serialization - Serializer configuration and performance
- Dependency Injection - DI setup and patterns
- Configuration - Options and settings
๐ฆ CI Packages (Feedz)
Want the latest CI build before it hits NuGet? Add the Feedz source and install the pre-release version:
dotnet nuget add source https://f.feedz.io/foundatio/foundatio/nuget -n foundatio-feedz
dotnet add package Foundatio.AWS --prerelease
Or add to your NuGet.config:
<configuration>
<packageSources>
<add key="foundatio-feedz" value="https://f.feedz.io/foundatio/foundatio/nuget" />
</packageSources>
<packageSourceMapping>
<packageSource key="foundatio-feedz">
<package pattern="Foundatio.*" />
</packageSource>
</packageSourceMapping>
</configuration>
๐ค Contributing
Contributions are welcome! Please feel free to submit a Pull Request. See our documentation for development guidelines.
Development Setup:
- Clone the repository
- Open
Foundatio.AWS.slnxin Visual Studio or VS Code - Run
dotnet buildto build - Run
dotnet testto run tests
๐ License
Apache 2.0 License
Thanks to all the people who have contributed
| Product | Versions 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 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 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.
-
net10.0
- AWSSDK.CloudWatch (>= 4.0.104.1)
- AWSSDK.S3 (>= 4.0.102.4)
- AWSSDK.SimpleNotificationService (>= 4.0.100.11)
- AWSSDK.SQS (>= 4.0.100.11)
- Foundatio (>= 13.0.4)
-
net8.0
- AWSSDK.CloudWatch (>= 4.0.104.1)
- AWSSDK.S3 (>= 4.0.102.4)
- AWSSDK.SimpleNotificationService (>= 4.0.100.11)
- AWSSDK.SQS (>= 4.0.100.11)
- Foundatio (>= 13.0.4)
NuGet packages (1)
Showing the top 1 NuGet packages that depend on Foundatio.AWS:
| Package | Downloads |
|---|---|
|
LShared.Frameworks
Package Description |
GitHub repositories (1)
Showing the top 1 popular GitHub repositories that depend on Foundatio.AWS:
| Repository | Stars |
|---|---|
|
exceptionless/Exceptionless
Exceptionless application
|
| Version | Downloads | Last Updated |
|---|---|---|
| 13.0.4 | 1,036 | 2026/8/28 |
| 13.0.2 | 10,776 | 2026/6/25 |
| 13.0.1 | 6,902 | 2026/5/9 |
| 13.0.0 | 2,939 | 2026/4/25 |
| 13.0.0-beta6 | 225 | 2026/4/15 |
| 13.0.0-beta3 | 3,875 | 2026/2/14 |
| 13.0.0-beta1 | 375 | 2026/1/12 |
| 12.0.1 | 16,577 | 2026/1/12 |
| 12.0.0 | 23,645 | 2025/8/20 |
| 11.1.0 | 15,167 | 2025/5/9 |
| 11.0.8 | 19,236 | 2025/1/31 |
| 11.0.6 | 17,268 | 2024/11/26 |
| 11.0.5 | 12,042 | 2024/9/28 |
| 11.0.2 | 10,875 | 2024/8/31 |
| 11.0.0 | 10,269 | 2024/8/31 |
| 10.7.1 | 28,823 | 2024/3/27 |
| 10.7.0 | 16,855 | 2024/1/5 |
| 10.6.1 | 56,124 | 2023/6/23 |
| 10.6.0 | 46,885 | 2023/1/4 |
| 10.5.0 | 14,507 | 2022/5/18 |
Loading failed