You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing DeleteRequest as input to an Aws::Client method, you can use a vanilla Hash:

{
  key: { # required
    "AttributeName" => "value", # value <Hash,Array,String,Numeric,Boolean,IO,Set,nil>
  },
}

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

Returned by:

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:

  • (Hash<String,Types::AttributeValue>)

    A map of attribute name to attribute values, representing the primary key of the item to delete.