/**
* 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 (ARN) of the replication task.
*/ inline const Aws::String& GetReplicationTaskArn() const{ return m_replicationTaskArn; } /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline bool ReplicationTaskArnHasBeenSet() const { return m_replicationTaskArnHasBeenSet; } /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline void SetReplicationTaskArn(const Aws::String& value) { m_replicationTaskArnHasBeenSet = true; m_replicationTaskArn = value; } /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline void SetReplicationTaskArn(Aws::String&& value) { m_replicationTaskArnHasBeenSet = true; m_replicationTaskArn = std::move(value); } /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline void SetReplicationTaskArn(const char* value) { m_replicationTaskArnHasBeenSet = true; m_replicationTaskArn.assign(value); } /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline StartReplicationTaskAssessmentRequest& WithReplicationTaskArn(const Aws::String& value) { SetReplicationTaskArn(value); return *this;} /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline StartReplicationTaskAssessmentRequest& WithReplicationTaskArn(Aws::String&& value) { SetReplicationTaskArn(std::move(value)); return *this;} /** *The Amazon Resource Name (ARN) of the replication task.
*/ inline StartReplicationTaskAssessmentRequest& WithReplicationTaskArn(const char* value) { SetReplicationTaskArn(value); return *this;} private: Aws::String m_replicationTaskArn; bool m_replicationTaskArnHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws