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

Returns the identifier for the profile that's being updated.

*/ inline const Aws::String& GetProfileId() const{ return m_profileId; } /** *

Returns the identifier for the profile that's being updated.

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

Returns the identifier for the profile that's being updated.

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

Returns the identifier for the profile that's being updated.

*/ inline void SetProfileId(const char* value) { m_profileId.assign(value); } /** *

Returns the identifier for the profile that's being updated.

*/ inline UpdateProfileResult& WithProfileId(const Aws::String& value) { SetProfileId(value); return *this;} /** *

Returns the identifier for the profile that's being updated.

*/ inline UpdateProfileResult& WithProfileId(Aws::String&& value) { SetProfileId(std::move(value)); return *this;} /** *

Returns the identifier for the profile that's being updated.

*/ inline UpdateProfileResult& WithProfileId(const char* value) { SetProfileId(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 UpdateProfileResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateProfileResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateProfileResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_profileId; Aws::String m_requestId; }; } // namespace Model } // namespace Transfer } // namespace Aws