Amazon DynamoDB · JSON Structure

Dynamodb Consumed Capacity Structure

Type: object Properties: 7
CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

ConsumedCapacity is a JSON Structure definition published by Amazon DynamoDB, describing 7 properties. It conforms to the https://json-structure.org/draft/2020-12/schema meta-schema.

Properties

TableName CapacityUnits ReadCapacityUnits WriteCapacityUnits Table LocalSecondaryIndexes GlobalSecondaryIndexes

Meta-schema: https://json-structure.org/draft/2020-12/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/draft/2020-12/schema",
  "name": "ConsumedCapacity",
  "type": "object",
  "properties": {
    "TableName": {
      "type": "string"
    },
    "CapacityUnits": {
      "type": "number"
    },
    "ReadCapacityUnits": {
      "type": "number"
    },
    "WriteCapacityUnits": {
      "type": "number"
    },
    "Table": {
      "type": "object"
    },
    "LocalSecondaryIndexes": {
      "type": "object"
    },
    "GlobalSecondaryIndexes": {
      "type": "object"
    }
  }
}