aboutsummaryrefslogtreecommitdiff
path: root/VNLib.Plugins.Extensions.Loading/S3Config.cs
blob: 635f739d89bc2e0e0d70fd6fdfaf9d88b12ecc00 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#nullable enable

namespace VNLib.Plugins.Extensions.Loading.Configuration
{
    public sealed class S3Config
    {
        public string? ServerAddress { get; init; }
        public string? ClientId { get; init; }        
        public string? ClientSecret { get; init; }
        public string? BaseBucket { get; init; }
        public bool? UseSsl { get; init; }
        public string? Region { get; init; }
    }
}