After modifying the throughput of a DynamoDB table, where can I see the new throughput value before it gets active

dynamodb

After modifying the throughput of a table in DynamoDB, the "Modify Throughput" is greyed out:

enter image description here

Where can I see the new throughput value before it gets active? Sometimes it takes a while for a throughput to get applied, especially for large values, and I would like to check whether the person (myself or colleague) who changed the throughput didn't make a mistake.

Best Answer

I came across similar problem. So thinking to make some sort of series of describe table

DescribeTableResult describeTableResult = client.describeTable('tableName')

And put it in while loop until settings are applied. That could give rough idea how much time does it take to apply settings.