DescribeLimits action lets you write code to compare the capacity you are currently using to those quotas imposed by your account so that you have enough time to apply for an increase before you hit a quota.DescribeLimits for a particular Region to obtain your current account quotas on provisioned capacity there.ListTables to obtain a list of all your DynamoDB tables.ListTables, do the following:DescribeTable with the table name.DescribeTable to add the read capacity units and write capacity units provisioned for the table itself to your variables.DescribeLimits, along with the total current provisioned capacity levels you have calculated.DescribeLimits Request element has no content.curl --location --request POST '/' \
--header 'X-Amz-Target;' \
--header 'Content-Type: application/json' \
--data-raw '{}'{
"AccountMaxReadCapacityUnits": 20000,
"AccountMaxWriteCapacityUnits": 20000,
"TableMaxReadCapacityUnits": 10000,
"TableMaxWriteCapacityUnits": 10000
}