73 lines
2.0 KiB
C++
73 lines
2.0 KiB
C++
/**
|
|
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
|
|
* SPDX-License-Identifier: Apache-2.0.
|
|
*/
|
|
|
|
#pragma once
|
|
#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
|
|
#include <aws/dms/model/EventSubscription.h>
|
|
#include <utility>
|
|
|
|
namespace Aws
|
|
{
|
|
template<typename RESULT_TYPE>
|
|
class AmazonWebServiceResult;
|
|
|
|
namespace Utils
|
|
{
|
|
namespace Json
|
|
{
|
|
class JsonValue;
|
|
} // namespace Json
|
|
} // namespace Utils
|
|
namespace DatabaseMigrationService
|
|
{
|
|
namespace Model
|
|
{
|
|
/**
|
|
* <p/><p><h3>See Also:</h3> <a
|
|
* href="http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/ModifyEventSubscriptionResponse">AWS
|
|
* API Reference</a></p>
|
|
*/
|
|
class AWS_DATABASEMIGRATIONSERVICE_API ModifyEventSubscriptionResult
|
|
{
|
|
public:
|
|
ModifyEventSubscriptionResult();
|
|
ModifyEventSubscriptionResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
ModifyEventSubscriptionResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
|
|
|
|
|
|
/**
|
|
* <p>The modified event subscription.</p>
|
|
*/
|
|
inline const EventSubscription& GetEventSubscription() const{ return m_eventSubscription; }
|
|
|
|
/**
|
|
* <p>The modified event subscription.</p>
|
|
*/
|
|
inline void SetEventSubscription(const EventSubscription& value) { m_eventSubscription = value; }
|
|
|
|
/**
|
|
* <p>The modified event subscription.</p>
|
|
*/
|
|
inline void SetEventSubscription(EventSubscription&& value) { m_eventSubscription = std::move(value); }
|
|
|
|
/**
|
|
* <p>The modified event subscription.</p>
|
|
*/
|
|
inline ModifyEventSubscriptionResult& WithEventSubscription(const EventSubscription& value) { SetEventSubscription(value); return *this;}
|
|
|
|
/**
|
|
* <p>The modified event subscription.</p>
|
|
*/
|
|
inline ModifyEventSubscriptionResult& WithEventSubscription(EventSubscription&& value) { SetEventSubscription(std::move(value)); return *this;}
|
|
|
|
private:
|
|
|
|
EventSubscription m_eventSubscription;
|
|
};
|
|
|
|
} // namespace Model
|
|
} // namespace DatabaseMigrationService
|
|
} // namespace Aws
|