/**
* 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 replication that DMS started.
*/ inline const Replication& GetReplication() const{ return m_replication; } /** *The replication that DMS started.
*/ inline void SetReplication(const Replication& value) { m_replication = value; } /** *The replication that DMS started.
*/ inline void SetReplication(Replication&& value) { m_replication = std::move(value); } /** *The replication that DMS started.
*/ inline StartReplicationResult& WithReplication(const Replication& value) { SetReplication(value); return *this;} /** *The replication that DMS started.
*/ inline StartReplicationResult& WithReplication(Replication&& value) { SetReplication(std::move(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 StartReplicationResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartReplicationResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartReplicationResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Replication m_replication; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws