/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/opsworks/OpsWorks_EXPORTS.h> #include <aws/opsworks/model/SelfUserProfile.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 OpsWorks { namespace Model { /** * <p>Contains the response to a <code>DescribeMyUserProfile</code> * request.</p><p><h3>See Also:</h3> <a * href="http://docs.aws.amazon.com/goto/WebAPI/opsworks-2013-02-18/DescribeMyUserProfileResult">AWS * API Reference</a></p> */ class DescribeMyUserProfileResult { public: AWS_OPSWORKS_API DescribeMyUserProfileResult(); AWS_OPSWORKS_API DescribeMyUserProfileResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_OPSWORKS_API DescribeMyUserProfileResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>A <code>UserProfile</code> object that describes the user's SSH * information.</p> */ inline const SelfUserProfile& GetUserProfile() const{ return m_userProfile; } /** * <p>A <code>UserProfile</code> object that describes the user's SSH * information.</p> */ inline void SetUserProfile(const SelfUserProfile& value) { m_userProfile = value; } /** * <p>A <code>UserProfile</code> object that describes the user's SSH * information.</p> */ inline void SetUserProfile(SelfUserProfile&& value) { m_userProfile = std::move(value); } /** * <p>A <code>UserProfile</code> object that describes the user's SSH * information.</p> */ inline DescribeMyUserProfileResult& WithUserProfile(const SelfUserProfile& value) { SetUserProfile(value); return *this;} /** * <p>A <code>UserProfile</code> object that describes the user's SSH * information.</p> */ inline DescribeMyUserProfileResult& WithUserProfile(SelfUserProfile&& value) { SetUserProfile(std::move(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 DescribeMyUserProfileResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeMyUserProfileResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeMyUserProfileResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: SelfUserProfile m_userProfile; Aws::String m_requestId; }; } // namespace Model } // namespace OpsWorks } // namespace Aws