Skip to content

Latest commit

 

History

History

README.md

SimpleModule.Storage.S3

NuGet

AWS S3 storage provider for SimpleModule.Storage.

Installation

dotnet add package SimpleModule.Storage.S3

Quick Start

builder.Services.AddS3Storage(options =>
{
    options.BucketName = "my-app-uploads";
    options.Region = "us-east-1";
});

Key Features

  • Upload, download, list, and delete files in S3 buckets
  • Implements IStorageProvider from SimpleModule.Storage
  • AWS SDK integration via AWSSDK.S3

Links