/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Represents a request to perform a DeleteItem
operation on an
* item.See Also:
AWS
* API Reference
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.
*/ inline const Aws::MapA 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.
*/ inline bool KeyHasBeenSet() const { return m_keyHasBeenSet; } /** *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.
*/ inline void SetKey(const Aws::MapA 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.
*/ inline void SetKey(Aws::MapA 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.
*/ inline DeleteRequest& WithKey(const Aws::MapA 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.
*/ inline DeleteRequest& WithKey(Aws::MapA 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.
*/ inline DeleteRequest& AddKey(const Aws::String& key, const AttributeValue& value) { m_keyHasBeenSet = true; m_key.emplace(key, value); return *this; } /** *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.
*/ inline DeleteRequest& AddKey(Aws::String&& key, const AttributeValue& value) { m_keyHasBeenSet = true; m_key.emplace(std::move(key), value); return *this; } /** *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.
*/ inline DeleteRequest& AddKey(const Aws::String& key, AttributeValue&& value) { m_keyHasBeenSet = true; m_key.emplace(key, std::move(value)); return *this; } /** *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.
*/ inline DeleteRequest& AddKey(Aws::String&& key, AttributeValue&& value) { m_keyHasBeenSet = true; m_key.emplace(std::move(key), std::move(value)); return *this; } /** *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.
*/ inline DeleteRequest& AddKey(const char* key, AttributeValue&& value) { m_keyHasBeenSet = true; m_key.emplace(key, std::move(value)); return *this; } /** *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.
*/ inline DeleteRequest& AddKey(const char* key, const AttributeValue& value) { m_keyHasBeenSet = true; m_key.emplace(key, value); return *this; } private: Aws::Map