update_gsi
Update the read and write capacity units of a DynamoDB global secondary index by specifying the table name, index name, and desired provisioned throughput.
Instructions
Updates the provisioned capacity of a global secondary index
Input Schema
Name | Required | Description | Default |
---|---|---|---|
indexName | Yes | Name of the index to update | |
readCapacity | Yes | New read capacity units | |
tableName | Yes | Name of the table | |
writeCapacity | Yes | New write capacity units |
Input Schema (JSON Schema)
{
"properties": {
"indexName": {
"description": "Name of the index to update",
"type": "string"
},
"readCapacity": {
"description": "New read capacity units",
"type": "number"
},
"tableName": {
"description": "Name of the table",
"type": "string"
},
"writeCapacity": {
"description": "New write capacity units",
"type": "number"
}
},
"required": [
"tableName",
"indexName",
"readCapacity",
"writeCapacity"
],
"type": "object"
}