/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace DatabaseMigrationService { namespace Model { /** *

See Also:

AWS * API Reference

*/ class DescribeReplicationTaskAssessmentRunsResult { public: AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskAssessmentRunsResult(); AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskAssessmentRunsResult(const Aws::AmazonWebServiceResult& result); AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskAssessmentRunsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

*/ inline const Aws::String& GetMarker() const{ return m_marker; } /** *

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

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

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

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

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

*/ inline void SetMarker(const char* value) { m_marker.assign(value); } /** *

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

*/ inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

*/ inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

A pagination token returned for you to pass to a subsequent request. If you * pass this token as the Marker value in a subsequent request, the * response includes only records beyond the marker, up to the value specified in * the request by MaxRecords.

*/ inline DescribeReplicationTaskAssessmentRunsResult& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline const Aws::Vector& GetReplicationTaskAssessmentRuns() const{ return m_replicationTaskAssessmentRuns; } /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline void SetReplicationTaskAssessmentRuns(const Aws::Vector& value) { m_replicationTaskAssessmentRuns = value; } /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline void SetReplicationTaskAssessmentRuns(Aws::Vector&& value) { m_replicationTaskAssessmentRuns = std::move(value); } /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline DescribeReplicationTaskAssessmentRunsResult& WithReplicationTaskAssessmentRuns(const Aws::Vector& value) { SetReplicationTaskAssessmentRuns(value); return *this;} /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline DescribeReplicationTaskAssessmentRunsResult& WithReplicationTaskAssessmentRuns(Aws::Vector&& value) { SetReplicationTaskAssessmentRuns(std::move(value)); return *this;} /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline DescribeReplicationTaskAssessmentRunsResult& AddReplicationTaskAssessmentRuns(const ReplicationTaskAssessmentRun& value) { m_replicationTaskAssessmentRuns.push_back(value); return *this; } /** *

One or more premigration assessment runs as specified by * Filters.

*/ inline DescribeReplicationTaskAssessmentRunsResult& AddReplicationTaskAssessmentRuns(ReplicationTaskAssessmentRun&& value) { m_replicationTaskAssessmentRuns.push_back(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 DescribeReplicationTaskAssessmentRunsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeReplicationTaskAssessmentRunsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeReplicationTaskAssessmentRunsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_marker; Aws::Vector m_replicationTaskAssessmentRuns; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws