/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace Connect { namespace Model { class AWS_CONNECT_API DescribeUserResult { public: DescribeUserResult(); DescribeUserResult(const Aws::AmazonWebServiceResult& result); DescribeUserResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

Information about the user account and configuration settings.

*/ inline const User& GetUser() const{ return m_user; } /** *

Information about the user account and configuration settings.

*/ inline void SetUser(const User& value) { m_user = value; } /** *

Information about the user account and configuration settings.

*/ inline void SetUser(User&& value) { m_user = std::move(value); } /** *

Information about the user account and configuration settings.

*/ inline DescribeUserResult& WithUser(const User& value) { SetUser(value); return *this;} /** *

Information about the user account and configuration settings.

*/ inline DescribeUserResult& WithUser(User&& value) { SetUser(std::move(value)); return *this;} private: User m_user; }; } // namespace Model } // namespace Connect } // namespace Aws