/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
When set to true, this operation migrates DMS subscriptions for Amazon SNS * notifications no matter what your replication instance version is. If not set or * set to false, this operation runs only when all your replication instances are * from DMS version 3.4.6 or higher.
*/ inline bool GetForceMove() const{ return m_forceMove; } /** *When set to true, this operation migrates DMS subscriptions for Amazon SNS * notifications no matter what your replication instance version is. If not set or * set to false, this operation runs only when all your replication instances are * from DMS version 3.4.6 or higher.
*/ inline bool ForceMoveHasBeenSet() const { return m_forceMoveHasBeenSet; } /** *When set to true, this operation migrates DMS subscriptions for Amazon SNS * notifications no matter what your replication instance version is. If not set or * set to false, this operation runs only when all your replication instances are * from DMS version 3.4.6 or higher.
*/ inline void SetForceMove(bool value) { m_forceMoveHasBeenSet = true; m_forceMove = value; } /** *When set to true, this operation migrates DMS subscriptions for Amazon SNS * notifications no matter what your replication instance version is. If not set or * set to false, this operation runs only when all your replication instances are * from DMS version 3.4.6 or higher.
*/ inline UpdateSubscriptionsToEventBridgeRequest& WithForceMove(bool value) { SetForceMove(value); return *this;} private: bool m_forceMove; bool m_forceMoveHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws