Amazon DynamoDB · Schema

ProvisionedThroughput

Represents the provisioned throughput settings for a table or index

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

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

JSON Schema

dynamodb-openapi-provisioned-throughput-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/amazon-dynamodb/refs/heads/main/json-schema/dynamodb-openapi-provisioned-throughput-schema.json",
  "title": "ProvisionedThroughput",
  "description": "Represents the provisioned throughput settings for a table or index",
  "type": "object",
  "properties": {
    "ReadCapacityUnits": {
      "type": "integer",
      "description": "The maximum number of strongly consistent reads per second",
      "minimum": 1
    },
    "WriteCapacityUnits": {
      "type": "integer",
      "description": "The maximum number of writes per second",
      "minimum": 1
    }
  },
  "required": [
    "ReadCapacityUnits",
    "WriteCapacityUnits"
  ]
}