Amazon DynamoDB · Schema

ProvisionedThroughput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
ReadCapacityUnits integer The maximum number of strongly consistent reads consumed per second
WriteCapacityUnits integer The maximum number of writes consumed per second
View JSON Schema on GitHub

JSON Schema

dynamodb-provisioned-throughput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProvisionedThroughput",
  "type": "object",
  "properties": {
    "ReadCapacityUnits": {
      "type": "integer",
      "description": "The maximum number of strongly consistent reads consumed per second"
    },
    "WriteCapacityUnits": {
      "type": "integer",
      "description": "The maximum number of writes consumed per second"
    }
  }
}