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,108 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sns/SNS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/sns/model/ResponseMetadata.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Xml
{
class XmlDocument;
} // namespace Xml
} // namespace Utils
namespace SNS
{
namespace Model
{
/**
* <p>Response for Publish action.</p><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/sns-2010-03-31/PublishResponse">AWS
* API Reference</a></p>
*/
class AWS_SNS_API PublishResult
{
public:
PublishResult();
PublishResult(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
PublishResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Xml::XmlDocument>& result);
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline const Aws::String& GetMessageId() const{ return m_messageId; }
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline void SetMessageId(const Aws::String& value) { m_messageId = value; }
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline void SetMessageId(Aws::String&& value) { m_messageId = std::move(value); }
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline void SetMessageId(const char* value) { m_messageId.assign(value); }
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline PublishResult& WithMessageId(const Aws::String& value) { SetMessageId(value); return *this;}
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline PublishResult& WithMessageId(Aws::String&& value) { SetMessageId(std::move(value)); return *this;}
/**
* <p>Unique identifier assigned to the published message.</p> <p>Length
* Constraint: Maximum 100 characters</p>
*/
inline PublishResult& WithMessageId(const char* value) { SetMessageId(value); return *this;}
inline const ResponseMetadata& GetResponseMetadata() const{ return m_responseMetadata; }
inline void SetResponseMetadata(const ResponseMetadata& value) { m_responseMetadata = value; }
inline void SetResponseMetadata(ResponseMetadata&& value) { m_responseMetadata = std::move(value); }
inline PublishResult& WithResponseMetadata(const ResponseMetadata& value) { SetResponseMetadata(value); return *this;}
inline PublishResult& WithResponseMetadata(ResponseMetadata&& value) { SetResponseMetadata(std::move(value)); return *this;}
private:
Aws::String m_messageId;
ResponseMetadata m_responseMetadata;
};
} // namespace Model
} // namespace SNS
} // namespace Aws