i am running dynamodb on a docker container and am able to write to the table using python boto3, which is all fine and good.
now when I query the dynamodb table from outside the container using aws CLI, its give this error and cannot find the table
╰─➤ aws dynamodb --region=eu-west-1 --endpoint-url http://localhost:8000 scan --table-name devApiConfig
A client error (ResourceNotFoundException) occurred when calling the Scan operation: Cannot do operations on a non-existent table
the name of the sqlite db created by dynamodb docker container is
localaccesskey_eu-west-1.db
aws --region=eu-west-1 dynamodb list-tables --endpoint-url http://localhost:8000
{
"TableNames": []
}
Any ideas or hints, as the tables do exist on the dynamodb when used from Boto3....?