Amazon DynamoDB · Schema

ProvisionedThroughputDescription

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
LastIncreaseDateTime string The date and time of the last provisioned throughput increase
LastDecreaseDateTime string 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 consumed per second
WriteCapacityUnits integer The maximum number of writes consumed per second
View JSON Schema on GitHub

JSON Schema

dynamodb-provisioned-throughput-description-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "ProvisionedThroughputDescription",
  "type": "object",
  "properties": {
    "LastIncreaseDateTime": {
      "type": "string",
      "description": "The date and time of the last provisioned throughput increase"
    },
    "LastDecreaseDateTime": {
      "type": "string",
      "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 consumed per second"
    },
    "WriteCapacityUnits": {
      "type": "integer",
      "description": "The maximum number of writes consumed per second"
    }
  }
}