We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1bb8faa commit 6cbadf3Copy full SHA for 6cbadf3
1 file changed
ManagedCode.Storage.Aws/AWSStorage.cs
@@ -25,7 +25,8 @@ public AWSStorage(AWSStorageOptions options, ILogger<AWSStorage>? logger = null)
25
_logger = logger;
26
StorageClient = new AmazonS3Client(new BasicAWSCredentials(options.PublicKey, options.SecretKey), options.OriginalOptions);
27
}
28
-
+
29
+ public IAmazonS3 StorageClient { get; }
30
31
public override async Task<Result> RemoveContainerAsync(CancellationToken cancellationToken = default)
32
{
0 commit comments