Class: Aws::DynamoDB::Types::DeleteRequest

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb

Overview

Represents a request to perform a DeleteItem operation on an item.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#keyHash<String,Types::AttributeValue>

A map of attribute name to attribute values, representing the primary key of the item to delete. All of the table's primary key attributes must be specified, and their data types must match those of the table's key schema.

Returns:



2555
2556
2557
2558
2559
# File 'gems/aws-sdk-dynamodb/lib/aws-sdk-dynamodb/types.rb', line 2555

class DeleteRequest < Struct.new(
  :key)
  SENSITIVE = []
  include Aws::Structure
end