/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include See Also:
AWS
* API Reference
The Amazon Resource Name of the replication to stop.
*/ inline const Aws::String& GetReplicationConfigArn() const{ return m_replicationConfigArn; } /** *The Amazon Resource Name of the replication to stop.
*/ inline bool ReplicationConfigArnHasBeenSet() const { return m_replicationConfigArnHasBeenSet; } /** *The Amazon Resource Name of the replication to stop.
*/ inline void SetReplicationConfigArn(const Aws::String& value) { m_replicationConfigArnHasBeenSet = true; m_replicationConfigArn = value; } /** *The Amazon Resource Name of the replication to stop.
*/ inline void SetReplicationConfigArn(Aws::String&& value) { m_replicationConfigArnHasBeenSet = true; m_replicationConfigArn = std::move(value); } /** *The Amazon Resource Name of the replication to stop.
*/ inline void SetReplicationConfigArn(const char* value) { m_replicationConfigArnHasBeenSet = true; m_replicationConfigArn.assign(value); } /** *The Amazon Resource Name of the replication to stop.
*/ inline StopReplicationRequest& WithReplicationConfigArn(const Aws::String& value) { SetReplicationConfigArn(value); return *this;} /** *The Amazon Resource Name of the replication to stop.
*/ inline StopReplicationRequest& WithReplicationConfigArn(Aws::String&& value) { SetReplicationConfigArn(std::move(value)); return *this;} /** *The Amazon Resource Name of the replication to stop.
*/ inline StopReplicationRequest& WithReplicationConfigArn(const char* value) { SetReplicationConfigArn(value); return *this;} private: Aws::String m_replicationConfigArn; bool m_replicationConfigArnHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws