Amazon DynamoDB · Schema

DeleteItemInput

CloudDatabaseDocument StoreKey-ValueManaged ServiceNoSQLServerless

Properties

Name Type Description
TableName string The name of the table from which to delete the item
Key object The primary key of the item to delete
ConditionExpression string A condition that must be satisfied for the deletion to succeed
ExpressionAttributeNames object
ExpressionAttributeValues object
ReturnValues string Whether to return the item attributes as they appeared before deletion
ReturnConsumedCapacity string
View JSON Schema on GitHub

JSON Schema

dynamodb-delete-item-input-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "title": "DeleteItemInput",
  "type": "object",
  "properties": {
    "TableName": {
      "type": "string",
      "description": "The name of the table from which to delete the item"
    },
    "Key": {
      "type": "object",
      "description": "The primary key of the item to delete"
    },
    "ConditionExpression": {
      "type": "string",
      "description": "A condition that must be satisfied for the deletion to succeed"
    },
    "ExpressionAttributeNames": {
      "type": "object"
    },
    "ExpressionAttributeValues": {
      "type": "object"
    },
    "ReturnValues": {
      "type": "string",
      "description": "Whether to return the item attributes as they appeared before deletion"
    },
    "ReturnConsumedCapacity": {
      "type": "string"
    }
  }
}