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-dms/include/aws/dms/model/DescribeReplicationTaskAssessmentRunsResult.h

151 lines
6.3 KiB
C++

/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include <aws/dms/DatabaseMigrationService_EXPORTS.h>
#include <aws/core/utils/memory/stl/AWSString.h>
#include <aws/core/utils/memory/stl/AWSVector.h>
#include <aws/dms/model/ReplicationTaskAssessmentRun.h>
#include <utility>
namespace Aws
{
template<typename RESULT_TYPE>
class AmazonWebServiceResult;
namespace Utils
{
namespace Json
{
class JsonValue;
} // namespace Json
} // namespace Utils
namespace DatabaseMigrationService
{
namespace Model
{
/**
* <p/><p><h3>See Also:</h3> <a
* href="http://docs.aws.amazon.com/goto/WebAPI/dms-2016-01-01/DescribeReplicationTaskAssessmentRunsResponse">AWS
* API Reference</a></p>
*/
class AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskAssessmentRunsResult
{
public:
DescribeReplicationTaskAssessmentRunsResult();
DescribeReplicationTaskAssessmentRunsResult(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
DescribeReplicationTaskAssessmentRunsResult& operator=(const Aws::AmazonWebServiceResult<Aws::Utils::Json::JsonValue>& result);
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline const Aws::String& GetMarker() const{ return m_marker; }
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline void SetMarker(const Aws::String& value) { m_marker = value; }
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline void SetMarker(Aws::String&& value) { m_marker = std::move(value); }
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline void SetMarker(const char* value) { m_marker.assign(value); }
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;}
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;}
/**
* <p>A pagination token returned for you to pass to a subsequent request. If you
* pass this token as the <code>Marker</code> value in a subsequent request, the
* response includes only records beyond the marker, up to the value specified in
* the request by <code>MaxRecords</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(const char* value) { SetMarker(value); return *this;}
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline const Aws::Vector<ReplicationTaskAssessmentRun>& GetReplicationTaskAssessmentRuns() const{ return m_replicationTaskAssessmentRuns; }
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline void SetReplicationTaskAssessmentRuns(const Aws::Vector<ReplicationTaskAssessmentRun>& value) { m_replicationTaskAssessmentRuns = value; }
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline void SetReplicationTaskAssessmentRuns(Aws::Vector<ReplicationTaskAssessmentRun>&& value) { m_replicationTaskAssessmentRuns = std::move(value); }
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& WithReplicationTaskAssessmentRuns(const Aws::Vector<ReplicationTaskAssessmentRun>& value) { SetReplicationTaskAssessmentRuns(value); return *this;}
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& WithReplicationTaskAssessmentRuns(Aws::Vector<ReplicationTaskAssessmentRun>&& value) { SetReplicationTaskAssessmentRuns(std::move(value)); return *this;}
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& AddReplicationTaskAssessmentRuns(const ReplicationTaskAssessmentRun& value) { m_replicationTaskAssessmentRuns.push_back(value); return *this; }
/**
* <p>One or more premigration assessment runs as specified by
* <code>Filters</code>.</p>
*/
inline DescribeReplicationTaskAssessmentRunsResult& AddReplicationTaskAssessmentRuns(ReplicationTaskAssessmentRun&& value) { m_replicationTaskAssessmentRuns.push_back(std::move(value)); return *this; }
private:
Aws::String m_marker;
Aws::Vector<ReplicationTaskAssessmentRun> m_replicationTaskAssessmentRuns;
};
} // namespace Model
} // namespace DatabaseMigrationService
} // namespace Aws