Amazon DynamoDB · Schema

ProvisionedThroughputDescription

Describes the provisioned throughput settings for a table or index

DatabaseDocument StoreKey-ValueNoSQLServerless

Properties

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