Skip to content

Commit ac81525

Browse files
committed
updated PHP example to use BillingMode
1 parent 5e42a5f commit ac81525

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

php/example_code/dynamodb/Tables_CRUD.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@
3232
'KeySchema' => [
3333
[
3434
'AttributeName' => 'Id',
35-
'KeyType' => 'HASH' //Partition key
35+
'KeyType' => 'HASH' //Partition key.
3636
]
3737
],
38-
'BillingMode' => 'PAY_PER_REQUEST' // Use on-demand billing mode
38+
'BillingMode' => 'PAY_PER_REQUEST' // Use on-demand billing mode.
3939
]);
4040

4141
$dynamodb->waitUntil('TableExists', [

0 commit comments

Comments
 (0)