We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to change the throughput of DynamoDB tables from aws-cli.
aws dynamodb modify-throughput --write-units 10000 --read-units 1 --table some_table
So it is terrible when we wanna set some big value of units.
Could it be supported by this product? Or should I develop another product for this?
The text was updated successfully, but these errors were encountered:
There was a bug that affected the update-table operation that's now fixed. To update the throughput of a table you can use:
update-table
$ aws dynamodb update-table --provisioned-throughput write_capacity_units=10,read_capacity_units=10 --table-name mytable
Sorry, something went wrong.
Merge pull request aws#166 from pdecat/python_3.9-dev
917bded
Add python 3.9 support
No branches or pull requests
I want to change the throughput of DynamoDB tables from aws-cli.
So it is terrible when we wanna set some big value of units.
Could it be supported by this product?
Or should I develop another product for this?
The text was updated successfully, but these errors were encountered: