Skip to content

Commit

Permalink
doc(dynamodb): Reference proper enum value for on-demand billing opti…
Browse files Browse the repository at this point in the history
…on in the ReadMe (#3179)
  • Loading branch information
kamalgill authored and skinny85 committed Jul 3, 2019
1 parent 958acc2 commit e36a8b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/@aws-cdk/aws-dynamodb/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import dynamodb = require('@aws-cdk/aws-dynamodb');

const table = new dynamodb.Table(this, 'Table', {
partitionKey: { name: 'id', type: dynamodb.AttributeType.String },
billingMode: dynamodb.BillingMode.PayPerRequest
billingMode: dynamodb.BillingMode.PAY_PER_REQUEST
});
```

Expand All @@ -60,4 +60,4 @@ https://docs.aws.amazon.com/amazondynamodb/latest/developerguide/AutoScaling.htm
https://aws.amazon.com/blogs/database/how-to-use-aws-cloudformation-to-configure-auto-scaling-for-amazon-dynamodb-tables-and-indexes/

### Amazon DynamoDB Global Tables
Please see the `@aws-cdk/aws-dynamodb-global` package [here](../aws-dynamodb-global/).
Please see the `@aws-cdk/aws-dynamodb-global` package [here](../aws-dynamodb-global/).

0 comments on commit e36a8b7

Please sign in to comment.