Amazon DynamoDB · JSON Structure

Dynamodb Openapi Provisioned Throughput Description Structure

Describes the provisioned throughput settings for a table or index

Type: object Properties: 5
DatabaseDocument StoreKey-ValueNoSQLServerless

ProvisionedThroughputDescription is a JSON Structure definition published by Amazon DynamoDB, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

LastIncreaseDateTime LastDecreaseDateTime NumberOfDecreasesToday 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-description-structure.json",
  "name": "ProvisionedThroughputDescription",
  "description": "Describes the provisioned throughput settings for a table or index",
  "type": "object",
  "properties": {
    "LastIncreaseDateTime": {
      "type": "double",
      "description": "The date and time of the last provisioned throughput increase"
    },
    "LastDecreaseDateTime": {
      "type": "double",
      "description": "The date and time of the last provisioned throughput decrease"
    },
    "NumberOfDecreasesToday": {
      "type": "int32",
      "description": "The number of provisioned throughput decreases for this table during this UTC calendar day"
    },
    "ReadCapacityUnits": {
      "type": "int32",
      "description": "The maximum number of strongly consistent reads per second"
    },
    "WriteCapacityUnits": {
      "type": "int32",
      "description": "The maximum number of writes per second"
    }
  }
}