我有以下代码:
public void ConfigureServices(IServiceCollection services)
{
// AWS Options
var awsOptions = Configuration.GetAWSOptions();
services.AddDefaultAWSOptions(awsOptions);
var client = awsOptions.CreateServiceClient<IAmazonDynamoDB>();
var dynamoDbOptions = new DynamoDbOptions();
ConfigurationBinder.Bind(Configuration.GetSection("DynamoDbTables"), dynamoDbOptions);
services.AddScoped<IDynamoDbManager<MyModel>>(provider => new DynamoDbManager<MyModel>(client, dynamoDbOptions.MyModel));
}
public class DynamoDbManager<T> : DynamoDBContext, IDynamoDbManager<T> where T : class
{
private DynamoDBOperationConfig _config;
public DynamoDbManager(IAmazonDynamoDB client, string tableName) : base(client)
{
_config = new DynamoDBOperationConfig()
{
OverrideTableName = tableName
};
}
}
我的Appsettings.json为:
{
"AWS": {
"Region": "us-east-1",
"AwsId": "xxx",
"AwsPassword": "xxx"
},
"DynamoDbTables": {
"MyModel": "MyTable"
}
}
运行代码时出现错误:
AmazonServiceException: Unable to find credentials
例外1之3: Amazon.Runtime.AmazonClientException:无法在CredentialProfileStoreChain中找到“默认”配置文件。在E:\ JenkinsWorkspaces \ v3-trebuchet-release \ AWSDotNetPublic \ sdk \ src \ Core \ Amazon.Runtime \ Credentials \ FallbackCredentialsFactory.cs:第72行
例外2之3: System.InvalidOperationException:未使用AWS凭证设置环境变量AWS_ACCESS_KEY_ID / AWS_SECRET_ACCESS_KEY / AWS_SESSION_TOKEN。
3之例外3: System.Net.Http.HttpRequestException:发送请求时发生错误。 ---> System.Net.Http.WinHttpException:操作超时 在System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw()
我尝试了很多事情,但没有使它起作用。
我尝试过:
将个人资料设置为: Amazon.Runtime.AmazonServiceException: Unable to find credentials
还尝试设置环境变量:
https://github.com/aws/aws-sdk-net/issues/499
但仍然无法克服此错误。
答案 0 :(得分:0)
因此,当我们使用AWS开发工具包时,我们需要设置并提供AWS访问密钥和秘密密钥。从我遇到的情况来看,它不会直接从应用程序设置中读取。因此,我发现以下是可以用来设置这些凭据的两种工作方法。
方法1 -使用凭据文件
您可以创建一个凭证文件并将凭证存储在此处。下面是文件的格式。
[default]
aws_access_key_id = your id goes here
aws_secret_access_key = your password goes here
在上面的文件中,“默认”是您的个人资料名称。
创建上述文件后,您需要在Appsettings.json文件中将其指定为:
"AWS": {
"Profile": "default",
"ProfilesLocation": "C:\\filelocation\\awscredentials",
"Region": "us-east-1",
}
方法2 -设置和读取环境变量
我们可以在我们的startup.cs文件中设置环境变量,如下所示:
Environment.SetEnvironmentVariable("AWS_ACCESS_KEY_ID", Configuration["AWS:AwsId"]);
Environment.SetEnvironmentVariable("AWS_SECRET_ACCESS_KEY", Configuration["AWS:AwsPassword"]);
Environment.SetEnvironmentVariable("AWS_REGION", Configuration["AWS:Region"]);
并从我们的appSettings.json文件中读取以下变量:
AWS": {
"Region": "us-east-1",
"AwsId": "xxxx",
"AwsPassword": "xxxx"
}