/** * 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 SMS { namespace Model { class AWS_SMS_API StartOnDemandReplicationRunResult { public: StartOnDemandReplicationRunResult(); StartOnDemandReplicationRunResult(const Aws::AmazonWebServiceResult& result); StartOnDemandReplicationRunResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the replication run.

*/ inline const Aws::String& GetReplicationRunId() const{ return m_replicationRunId; } /** *

The ID of the replication run.

*/ inline void SetReplicationRunId(const Aws::String& value) { m_replicationRunId = value; } /** *

The ID of the replication run.

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

The ID of the replication run.

*/ inline void SetReplicationRunId(const char* value) { m_replicationRunId.assign(value); } /** *

The ID of the replication run.

*/ inline StartOnDemandReplicationRunResult& WithReplicationRunId(const Aws::String& value) { SetReplicationRunId(value); return *this;} /** *

The ID of the replication run.

*/ inline StartOnDemandReplicationRunResult& WithReplicationRunId(Aws::String&& value) { SetReplicationRunId(std::move(value)); return *this;} /** *

The ID of the replication run.

*/ inline StartOnDemandReplicationRunResult& WithReplicationRunId(const char* value) { SetReplicationRunId(value); return *this;} private: Aws::String m_replicationRunId; }; } // namespace Model } // namespace SMS } // namespace Aws