So I’m trying to integrate Dynamo with my .netcore web api project. When I try to use my ACCESS_KEY/SECRET_Key to create a connection I get a segmentation fault, in C# I’m wondering if anyone has sucessfully done this before?
public async Task<string> GetItemNaive(string key)
{
using (var client = new AmazonDynamoDBClient(ACCESS_KEY, SECRET_KEY, RegionEndpoint.USEast1))
{
var tableResponse = await client.ListTablesAsync();
if (!tableResponse.TableNames.Contains("Users"))
{
return "no table";
}
}
return "table";
}