We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 299d2a1 commit 3dfb40fCopy full SHA for 3dfb40f
features/dynamodb/step_definitions/dynamodb.js
@@ -74,10 +74,7 @@ function createTable(world, callback) {
74
TableName: world.tableName,
75
AttributeDefinitions: [{ AttributeName: "id", AttributeType: "S" }],
76
KeySchema: [{ AttributeName: "id", KeyType: "HASH" }],
77
- ProvisionedThroughput: {
78
- ReadCapacityUnits: 10,
79
- WriteCapacityUnits: 5
80
- }
+ BillingMode: "PAY_PER_REQUEST"
81
};
82
83
world.service.createTable(params, function (err, data) {
0 commit comments