skip to Main Content

Not able to use GetItem() in dynamoDb for C# – Amazon Web Sevices

I want to get item from DYnamodb table using C# Here is my method public static dynamic Dynamodb() { string region = "us-east-2"; string tableName = "RetailTestData"; var credentials = new BasicAWSCredentials(Environment.GetEnvironmentVariable("awsAccessKeyId"), Environment.GetEnvironmentVariable("awsSecretAccessKey")); var client = new AmazonDynamoDBClient(credentials, RegionEndpoint.GetBySystemName(region)); var…

VIEW QUESTION
Back To Top
Search