/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace CognitoIdentityProvider { namespace Model { /** *

The response from the server for a registration request.

See * Also:

AWS * API Reference

*/ class SignUpResult { public: AWS_COGNITOIDENTITYPROVIDER_API SignUpResult(); AWS_COGNITOIDENTITYPROVIDER_API SignUpResult(const Aws::AmazonWebServiceResult& result); AWS_COGNITOIDENTITYPROVIDER_API SignUpResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A response from the server indicating that a user registration has been * confirmed.

*/ inline bool GetUserConfirmed() const{ return m_userConfirmed; } /** *

A response from the server indicating that a user registration has been * confirmed.

*/ inline void SetUserConfirmed(bool value) { m_userConfirmed = value; } /** *

A response from the server indicating that a user registration has been * confirmed.

*/ inline SignUpResult& WithUserConfirmed(bool value) { SetUserConfirmed(value); return *this;} /** *

The code delivery details returned by the server response to the user * registration request.

*/ inline const CodeDeliveryDetailsType& GetCodeDeliveryDetails() const{ return m_codeDeliveryDetails; } /** *

The code delivery details returned by the server response to the user * registration request.

*/ inline void SetCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { m_codeDeliveryDetails = value; } /** *

The code delivery details returned by the server response to the user * registration request.

*/ inline void SetCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { m_codeDeliveryDetails = std::move(value); } /** *

The code delivery details returned by the server response to the user * registration request.

*/ inline SignUpResult& WithCodeDeliveryDetails(const CodeDeliveryDetailsType& value) { SetCodeDeliveryDetails(value); return *this;} /** *

The code delivery details returned by the server response to the user * registration request.

*/ inline SignUpResult& WithCodeDeliveryDetails(CodeDeliveryDetailsType&& value) { SetCodeDeliveryDetails(std::move(value)); return *this;} /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline const Aws::String& GetUserSub() const{ return m_userSub; } /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline void SetUserSub(const Aws::String& value) { m_userSub = value; } /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline void SetUserSub(Aws::String&& value) { m_userSub = std::move(value); } /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline void SetUserSub(const char* value) { m_userSub.assign(value); } /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline SignUpResult& WithUserSub(const Aws::String& value) { SetUserSub(value); return *this;} /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline SignUpResult& WithUserSub(Aws::String&& value) { SetUserSub(std::move(value)); return *this;} /** *

The UUID of the authenticated user. This isn't the same as * username.

*/ inline SignUpResult& WithUserSub(const char* value) { SetUserSub(value); return *this;} inline const Aws::String& GetRequestId() const{ return m_requestId; } inline void SetRequestId(const Aws::String& value) { m_requestId = value; } inline void SetRequestId(Aws::String&& value) { m_requestId = std::move(value); } inline void SetRequestId(const char* value) { m_requestId.assign(value); } inline SignUpResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline SignUpResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline SignUpResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: bool m_userConfirmed; CodeDeliveryDetailsType m_codeDeliveryDetails; Aws::String m_userSub; Aws::String m_requestId; }; } // namespace Model } // namespace CognitoIdentityProvider } // namespace Aws