/** * 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 CreateReplicationJobResult { public: CreateReplicationJobResult(); CreateReplicationJobResult(const Aws::AmazonWebServiceResult& result); CreateReplicationJobResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The unique identifier of the replication job.

*/ inline const Aws::String& GetReplicationJobId() const{ return m_replicationJobId; } /** *

The unique identifier of the replication job.

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

The unique identifier of the replication job.

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

The unique identifier of the replication job.

*/ inline void SetReplicationJobId(const char* value) { m_replicationJobId.assign(value); } /** *

The unique identifier of the replication job.

*/ inline CreateReplicationJobResult& WithReplicationJobId(const Aws::String& value) { SetReplicationJobId(value); return *this;} /** *

The unique identifier of the replication job.

*/ inline CreateReplicationJobResult& WithReplicationJobId(Aws::String&& value) { SetReplicationJobId(std::move(value)); return *this;} /** *

The unique identifier of the replication job.

*/ inline CreateReplicationJobResult& WithReplicationJobId(const char* value) { SetReplicationJobId(value); return *this;} private: Aws::String m_replicationJobId; }; } // namespace Model } // namespace SMS } // namespace Aws