You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In below code, there is AwsCli but it is missing in IAmazon
using ModularPipelines.AmazonWebServices.Services;
namespace ModularPipelines.AmazonWebServices;
internal class Amazon : IAmazon
{
public Amazon(IAmazonProvisioner provisioner, Aws awsCli)
{
Provisioner = provisioner;
AwsCli = awsCli;
}
public IAmazonProvisioner Provisioner { get; }
public Aws AwsCli { get; }
}
therefore it is not possible to use AwsCli e.g. in such way: context.Amazon().AwsCli.S3api. ... or there is some other way that I missed?
Yeah that's an oversight on my part. The Amazon library doesn't really do much at the moment. If you've experience with it, feel free to help expand it 😃
In below code, there is AwsCli but it is missing in IAmazon
therefore it is not possible to use AwsCli e.g. in such way:
context.Amazon().AwsCli.S3api. ...
or there is some other way that I missed?
The text was updated successfully, but these errors were encountered: