TwentyTwenty.Storage.Amazon.AmazonStorageProvider.AmazonStorageProvider C# (CSharp) Method

AmazonStorageProvider() public method

public AmazonStorageProvider ( AmazonProviderOptions options ) : Amazon.S3
options AmazonProviderOptions
return Amazon.S3
        public AmazonStorageProvider(AmazonProviderOptions options)
        {
            _serviceUrl = options.ServiceUrl ?? DefaultServiceUrl;
            _bucket = options.Bucket;

            var S3Config = new AmazonS3Config
            {
                ServiceURL = _serviceUrl            
            };

            _s3Client = new AmazonS3Client(options.PublicKey, options.SecretKey, S3Config);
        }