feat(hos_client_create, hos_client_destory): 多次调用destory不会导致重复释放

This commit is contained in:
彭宣正
2020-12-14 17:24:58 +08:00
parent 505d529c32
commit 10b370e486
55976 changed files with 8544395 additions and 2 deletions

View File

@@ -0,0 +1,171 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dynamodb/DynamoDB_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSMap.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/dynamodb/model/AttributeValue.h>
#include <utility>
namespace Aws
{
namespace Utils
{
namespace Json
{
class JsonValue;
class JsonView;
} // namespace Json
} // namespace Utils
namespace DynamoDB
{
namespace Model
{
/**
* <p>Represents a request to perform a <code>PutItem</code> operation on an
* item.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/dynamodb-2012-08-10/PutRequest">AWS
* API Reference</a></p>
*/
class AWS_DYNAMODB_API PutRequest
{
public:
PutRequest();
PutRequest(Aws::Utils::Json::JsonView jsonValue);
PutRequest& operator=(Aws::Utils::Json::JsonView jsonValue);
Aws::Utils::Json::JsonValue Jsonize() const;
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline const Aws::Map<Aws::String, AttributeValue>& GetItem() const{ return m_item; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline bool ItemHasBeenSet() const { return m_itemHasBeenSet; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline void SetItem(const Aws::Map<Aws::String, AttributeValue>& value) { m_itemHasBeenSet = true; m_item = value; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline void SetItem(Aws::Map<Aws::String, AttributeValue>&& value) { m_itemHasBeenSet = true; m_item = std::move(value); }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& WithItem(const Aws::Map<Aws::String, AttributeValue>& value) { SetItem(value); return *this;}
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& WithItem(Aws::Map<Aws::String, AttributeValue>&& value) { SetItem(std::move(value)); return *this;}
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(const Aws::String& key, const AttributeValue& value) { m_itemHasBeenSet = true; m_item.emplace(key, value); return *this; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(Aws::String&& key, const AttributeValue& value) { m_itemHasBeenSet = true; m_item.emplace(std::move(key), value); return *this; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(const Aws::String& key, AttributeValue&& value) { m_itemHasBeenSet = true; m_item.emplace(key, std::move(value)); return *this; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(Aws::String&& key, AttributeValue&& value) { m_itemHasBeenSet = true; m_item.emplace(std::move(key), std::move(value)); return *this; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(const char* key, AttributeValue&& value) { m_itemHasBeenSet = true; m_item.emplace(key, std::move(value)); return *this; }
/**
* <p>A map of attribute name to attribute values, representing the primary key of
* an item to be processed by <code>PutItem</code>. All of the table's primary key
* attributes must be specified, and their data types must match those of the
* table's key schema. If any attributes are present in the item that are part of
* an index key schema for the table, their types must match the index key
* schema.</p>
*/
inline PutRequest& AddItem(const char* key, const AttributeValue& value) { m_itemHasBeenSet = true; m_item.emplace(key, value); return *this; }
private:
Aws::Map<Aws::String, AttributeValue> m_item;
bool m_itemHasBeenSet;
};
} // namespace Model
} // namespace DynamoDB
} // namespace Aws