AWS DynamoDB resource not found exception

I have a problem connecting to DynamoDB. I get this exception:

com.amazonaws.services.dynamodb.model.ResourceNotFoundException: The requested resource was not found (Service: AmazonDynamoDB; Status code: 400; Error code: ResourceNotFoundException; Request ID: ..

But I have a table and the area is correct.

+5
source share
1 answer

From docs, it either does not have a table with this name, or is in the CREATE state.

I would double check to make sure the table really exists, in the correct area and you use a passkey that can achieve this

+4
source

Source: https://habr.com/ru/post/1258633/


All Articles