/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DatabaseMigrationService { namespace Model { class ReloadTablesResult { public: AWS_DATABASEMIGRATIONSERVICE_API ReloadTablesResult(); AWS_DATABASEMIGRATIONSERVICE_API ReloadTablesResult(const Aws::AmazonWebServiceResult& result); AWS_DATABASEMIGRATIONSERVICE_API ReloadTablesResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

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 void SetReplicationTaskArn(const Aws::String& value) { m_replicationTaskArn = value; } /** *

The Amazon Resource Name (ARN) of the replication task.

*/ inline void SetReplicationTaskArn(Aws::String&& value) { m_replicationTaskArn = std::move(value); } /** *

The Amazon Resource Name (ARN) of the replication task.

*/ inline void SetReplicationTaskArn(const char* value) { m_replicationTaskArn.assign(value); } /** *

The Amazon Resource Name (ARN) of the replication task.

*/ inline ReloadTablesResult& WithReplicationTaskArn(const Aws::String& value) { SetReplicationTaskArn(value); return *this;} /** *

The Amazon Resource Name (ARN) of the replication task.

*/ inline ReloadTablesResult& WithReplicationTaskArn(Aws::String&& value) { SetReplicationTaskArn(std::move(value)); return *this;} /** *

The Amazon Resource Name (ARN) of the replication task.

*/ inline ReloadTablesResult& WithReplicationTaskArn(const char* value) { SetReplicationTaskArn(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 ReloadTablesResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline ReloadTablesResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline ReloadTablesResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_replicationTaskArn; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws