Amazon DynamoDB · JSON Structure

Dynamodb Openapi Provisioned Throughput Structure

Represents the provisioned throughput settings for a table or index

Type: object Properties: 2 Required: 2
DatabaseDocument StoreKey-ValueNoSQLServerless

ProvisionedThroughput is a JSON Structure definition published by Amazon DynamoDB, describing 2 properties, of which 2 are required. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

ReadCapacityUnits WriteCapacityUnits

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

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