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,145 @@
/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/cognito-idp/CognitoIdentityProvider_EXPORTS.h>
#include <aws/cognito-idp/model/CodeDeliveryDetailsType.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 CognitoIdentityProvider
{
namespace Model
{
/**
* <p>The response from the server for a registration request.</p><p><h3>See
* Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/cognito-idp-2016-04-18/SignUpResponse">AWS
* API Reference</a></p>
*/
class AWS_COGNITOIDENTITYPROVIDER_API SignUpResult
{
public:
SignUpResult();
SignUpResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
SignUpResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A response from the server indicating that a user registration has been
* confirmed.</p>
*/
inline bool GetUserConfirmed() const{ return m_userConfirmed; }
/**
* <p>A response from the server indicating that a user registration has been
* confirmed.</p>
*/
inline void SetUserConfirmed(bool value) { m_userConfirmed = value; }
/**
* <p>A response from the server indicating that a user registration has been
* confirmed.</p>
*/
inline SignUpResult& WithUserConfirmed(bool value) { SetUserConfirmed(value); return *this;}
/**
* <p>The code delivery details returned by the server response to the user
* registration request.</p>
*/
inline const CodeDeliveryDetailsType& GetCodeDeliveryDetails() const{ return m_codeDeliveryDetails; }
/**
* <p>The code delivery details returned by the server response to the user
* registration request.</p>
*/
inline void SetCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { m_codeDeliveryDetails = value; }
/**
* <p>The code delivery details returned by the server response to the user
* registration request.</p>
*/
inline void SetCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { m_codeDeliveryDetails = std::move(value); }
/**
* <p>The code delivery details returned by the server response to the user
* registration request.</p>
*/
inline SignUpResult& WithCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { SetCodeDeliveryDetails(value); return *this;}
/**
* <p>The code delivery details returned by the server response to the user
* registration request.</p>
*/
inline SignUpResult& WithCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { SetCodeDeliveryDetails(std::move(value)); return *this;}
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline const Aws::String& GetUserSub() const{ return m_userSub; }
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline void SetUserSub(const Aws::String& value) { m_userSub = value; }
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline void SetUserSub(Aws::String&& value) { m_userSub = std::move(value); }
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline void SetUserSub(const char* value) { m_userSub.assign(value); }
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline SignUpResult& WithUserSub(const Aws::String& value) { SetUserSub(value); return *this;}
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline SignUpResult& WithUserSub(Aws::String&& value) { SetUserSub(std::move(value)); return *this;}
/**
* <p>The UUID of the authenticated user. This is not the same as
* <code>username</code>.</p>
*/
inline SignUpResult& WithUserSub(const char* value) { SetUserSub(value); return *this;}
private:
bool m_userConfirmed;
CodeDeliveryDetailsType m_codeDeliveryDetails;
Aws::String m_userSub;
};
} // namespace Model
} // namespace CognitoIdentityProvider
} // namespace Aws