Skip to content

Commit d65f3fb

Browse files
committed
updated the PHP Create table example
1 parent bc14b74 commit d65f3fb

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

php/example_code/dynamodb/Tables_CRUD.php

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,7 @@
3535
'KeyType' => 'HASH' //Partition key
3636
]
3737
],
38-
'ProvisionedThroughput' => [
39-
'ReadCapacityUnits' => 5,
40-
'WriteCapacityUnits' => 6
41-
]
38+
'BillingMode' => 'PAY_PER_REQUEST' // Use on-demand billing mode
4239
]);
4340

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

0 commit comments

Comments
 (0)