AWS-CDK How to update DynamoDB capacity unit #27161
jerzystachera
started this conversation in
General
Replies: 1 comment 1 reply
-
@jerzystachera , as mentioned in the docs here |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
I've tried to update DynamoDB capacity units but it had no effect:
new Table(this, props.projectName, { tableName: props.tableName, partitionKey: {name: props.partitionKeyName, type: AttributeType.STRING}, sortKey: {name: props.sortKeyName, type: AttributeType.STRING}, removalPolicy: RemovalPolicy.DESTROY, stream: StreamViewType.NEW_AND_OLD_IMAGES, readCapacity: 15, writeCapacity: 15 });
The table still has the default one values: 5 read and 5 write capacity units.
How can I solve this ?
Beta Was this translation helpful? Give feedback.
All reactions