/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline const Aws::String& GetResult() const{ return m_result; } /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline void SetResult(const Aws::String& value) { m_result = value; } /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline void SetResult(Aws::String&& value) { m_result = std::move(value); } /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline void SetResult(const char* value) { m_result.assign(value); } /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline UpdateSubscriptionsToEventBridgeResult& WithResult(const Aws::String& value) { SetResult(value); return *this;} /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline UpdateSubscriptionsToEventBridgeResult& WithResult(Aws::String&& value) { SetResult(std::move(value)); return *this;} /** *A string that indicates how many event subscriptions were migrated and how * many remain to be migrated.
*/ inline UpdateSubscriptionsToEventBridgeResult& WithResult(const char* value) { SetResult(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 UpdateSubscriptionsToEventBridgeResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline UpdateSubscriptionsToEventBridgeResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline UpdateSubscriptionsToEventBridgeResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_result; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws