I am in need of an AWS dynamodb as the backend for my project.. I have already completed the below tasks:
- established jar for dynamodb local server to start listening
- downloaded PHP SDK from AWS
- created an iam user from AWS console and copied the credentials.ini file into .aws folder
- Executed the php script to connect my local dynamodb and create the table.
After all those tasks have been completed, localhost gives me a message stating the 'table created'. However am not able to find my table in the AWS console. What could be the problem?.
Am I doing it correctly? .. can someone please shed some light on this?
Here's my connection through PHP:
$client = new Aws\Sdk([
//'profile' => 'default',
'region' => 'us-west-2',
'version' => 'latest',
'endpoint' => 'http://localhost:8000',
'credentials' => [
'key' => '',
'secret' => '']
]);