AWS DynamoDB resource not found exception

amazon-dynamodb, amazon-web-services

Solution

From the docs it's either you don't have a Table with that name or it is in CREATING status.

I would double check to verify that the table does in fact exist, in the correct region, and you're using an access key that can reach it

Problem

I have a problem with connection to DynamoDB. I get this exception: com.amazonaws.services.dynamodb.model.ResourceNotFoundException: Requested resource not found (Service: AmazonDynamoDB; Status Code: 400; Error Code: ResourceNotFoundException; Request ID: .. But I have a table and region is correct.

Original source