Making BillingMode support opt-in.

This commit is contained in:
jushkem 2020-03-06 12:03:32 -08:00 committed by Cory-Bradshaw
parent ab572a9378
commit 1092c8d86d

View file

@ -157,7 +157,7 @@ public class DynamoDBLeaseRefresher implements LeaseRefresher {
}else{
request = CreateTableRequest.builder().tableName(table).keySchema(serializer.getKeySchema())
.attributeDefinitions(serializer.getAttributeDefinitions()).provisionedThroughput(throughput)
.billingMode(billingMode).build();
.build();
}