This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
pxz-hos-client-cpp-module/support/aws-sdk-cpp-master/aws-cpp-sdk-sms/include/aws/sms/model/StartOnDemandReplicationRunResult.h

78 lines
2.1 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/sms/SMS_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
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<Aws::Utils::Json::JsonValue>& result);
StartOnDemandReplicationRunResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>The ID of the replication run.</p>
*/
inline const Aws::String& GetReplicationRunId() const{ return m_replicationRunId; }
/**
* <p>The ID of the replication run.</p>
*/
inline void SetReplicationRunId(const Aws::String& value) { m_replicationRunId = value; }
/**
* <p>The ID of the replication run.</p>
*/
inline void SetReplicationRunId(Aws::String&& value) { m_replicationRunId = std::move(value); }
/**
* <p>The ID of the replication run.</p>
*/
inline void SetReplicationRunId(const char* value) { m_replicationRunId.assign(value); }
/**
* <p>The ID of the replication run.</p>
*/
inline StartOnDemandReplicationRunResult& WithReplicationRunId(const Aws::String& value) { SetReplicationRunId(value); return *this;}
/**
* <p>The ID of the replication run.</p>
*/
inline StartOnDemandReplicationRunResult& WithReplicationRunId(Aws::String&& value) { SetReplicationRunId(std::move(value)); return *this;}
/**
* <p>The ID of the replication run.</p>
*/
inline StartOnDemandReplicationRunResult& WithReplicationRunId(const char* value) { SetReplicationRunId(value); return *this;}
private:
Aws::String m_replicationRunId;
};
} // namespace Model
} // namespace SMS
} // namespace Aws