8000 Merge pull request #2 from edsonlb/patch-1 · pluginscart/dynamodb-php@fcc0265 · GitHub
[go: up one dir, main page]

Skip to content

Commit fcc0265

Browse files
authored
Merge pull request #2 from edsonlb/patch-1
Missing required client configuration options.
2 parents eb891f2 + 3e5cf3f commit fcc0265

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,8 @@ require_once '/path/to/DynamoDBWrapper.php'; // this module
2020
$ddb = new DynamoDBWrapper(array(
2121
'key' => 'YOUR_KEY',
2222
'secret' => 'YOUR_SECRET_KEY',
23-
'region' => 'SOME_REGION'
23+
'region' => 'SOME_REGION',
24+
'version' => 'latest'
2425
));
2526
```
2627
then, you can access DynamoDB through this instance.

0 commit comments

Comments
 (0)
0