我的开发人员正在开发一个在docker上运行的.net应用程序。它使用AWS的dynamodb中的表。我是DynamoDB的新手,不确定如何连接到它。 DynamoDB是否有任何端点?他配置了 在app.json文件中的aws凭证,其内容粘贴在
下 "AWS": {
"Profile": "testservice",
"Region": "xxxxxxxx",
"AccessKey": "xxxxxxxxxxxxxxx",
"SecretKey": "xxxxxxxxxxxxxxxxxxxxxxxxxxx"
},
"DynamoDb": {
"LocalMode": false
},
"Logging": {
"LogLevel": {
"Default": "Debug",
"System": "Information",
"Microsoft": "Information"
}
},
"AllowedHosts": "*"
}
,但未连接到dynamodb。我们在构建docker时需要设置任何变量吗?如何从docker容器连接到dynamodb表?