/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include <aws/proton/Proton_EXPORTS.h> #include <aws/proton/model/AccountSettings.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 Proton { namespace Model { class UpdateAccountSettingsResult { public: AWS_PROTON_API UpdateAccountSettingsResult(); AWS_PROTON_API UpdateAccountSettingsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); AWS_PROTON_API UpdateAccountSettingsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result); /** * <p>The Proton pipeline service role and repository data shared across the Amazon * Web Services account.</p> */ inline const AccountSettings& GetAccountSettings() const{ return m_accountSettings; } /** * <p>The Proton pipeline service role and repository data shared across the Amazon * Web Services account.</p> */ inline void SetAccountSettings(const AccountSettings& value) { m_accountSettings = value; } /** * <p>The Proton pipeline service role and repository data shared across the Amazon * Web Services account.</p> */ inline void SetAccountSettings(AccountSettings&& value) { m_accountSettings = std::move(value); } /** * <p>The Proton pipeline service role and repository data shared across the Amazon * Web Services account.</p> */ inline UpdateAccountSettingsResult& WithAccountSettings(const AccountSettings& value) { SetAccountSettings(value); return *this;} /** * <p>The Proton pipeline service role and repository data shared across the Amazon * Web Services account.</p> */ inline UpdateAccountSettingsResult& WithAccountSettings(AccountSettings&& value) { SetAccountSettings(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 UpdateAccountSettingsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateAccountSettingsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateAccountSettingsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: AccountSettings m_accountSettings; Aws::String m_requestId; }; } // namespace Model } // namespace Proton } // namespace Aws