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,83 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/rds-data/RDSDataService_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace RDSDataService
{
namespace Model
{
/**
* <p>The response elements represent the output of a request to start a SQL
* transaction.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/rds-data-2018-08-01/BeginTransactionResponse">AWS
* API Reference</a></p>
*/
class AWS_RDSDATASERVICE_API BeginTransactionResult
{
public:
BeginTransactionResult();
BeginTransactionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
BeginTransactionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline const Aws::String& GetTransactionId() const{ return m_transactionId; }
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline void SetTransactionId(const Aws::String& value) { m_transactionId = value; }
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline void SetTransactionId(Aws::String&& value) { m_transactionId = std::move(value); }
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline void SetTransactionId(const char* value) { m_transactionId.assign(value); }
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline BeginTransactionResult& WithTransactionId(const Aws::String& value) { SetTransactionId(value); return *this;}
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline BeginTransactionResult& WithTransactionId(Aws::String&& value) { SetTransactionId(std::move(value)); return *this;}
/**
* <p>The transaction ID of the transaction started by the call.</p>
*/
inline BeginTransactionResult& WithTransactionId(const char* value) { SetTransactionId(value); return *this;}
private:
Aws::String m_transactionId;
};
} // namespace Model
} // namespace RDSDataService
} // namespace Aws