/** * 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 WellArchitected { namespace Model { class CreateProfileResult { public: AWS_WELLARCHITECTED_API CreateProfileResult(); AWS_WELLARCHITECTED_API CreateProfileResult(const Aws::AmazonWebServiceResult& result); AWS_WELLARCHITECTED_API CreateProfileResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The profile ARN.

*/ inline const Aws::String& GetProfileArn() const{ return m_profileArn; } /** *

The profile ARN.

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

The profile ARN.

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

The profile ARN.

*/ inline void SetProfileArn(const char* value) { m_profileArn.assign(value); } /** *

The profile ARN.

*/ inline CreateProfileResult& WithProfileArn(const Aws::String& value) { SetProfileArn(value); return *this;} /** *

The profile ARN.

*/ inline CreateProfileResult& WithProfileArn(Aws::String&& value) { SetProfileArn(std::move(value)); return *this;} /** *

The profile ARN.

*/ inline CreateProfileResult& WithProfileArn(const char* value) { SetProfileArn(value); return *this;} /** *

Version of the profile.

*/ inline const Aws::String& GetProfileVersion() const{ return m_profileVersion; } /** *

Version of the profile.

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

Version of the profile.

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

Version of the profile.

*/ inline void SetProfileVersion(const char* value) { m_profileVersion.assign(value); } /** *

Version of the profile.

*/ inline CreateProfileResult& WithProfileVersion(const Aws::String& value) { SetProfileVersion(value); return *this;} /** *

Version of the profile.

*/ inline CreateProfileResult& WithProfileVersion(Aws::String&& value) { SetProfileVersion(std::move(value)); return *this;} /** *

Version of the profile.

*/ inline CreateProfileResult& WithProfileVersion(const char* value) { SetProfileVersion(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 CreateProfileResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline CreateProfileResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline CreateProfileResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_profileArn; Aws::String m_profileVersion; Aws::String m_requestId; }; } // namespace Model } // namespace WellArchitected } // namespace Aws