/** * 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 AWS_COGNITOIDENTITYPROVIDER_API SignUpResult { public: SignUpResult(); SignUpResult(const Aws::AmazonWebServiceResult& result); 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 is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

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

The UUID of the authenticated user. This is not the same as * username.

*/ 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