/** * 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 DescribeReplicationTaskIndividualAssessmentsResult { public: AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskIndividualAssessmentsResult(); AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskIndividualAssessmentsResult(const Aws::AmazonWebServiceResult& result); AWS_DATABASEMIGRATIONSERVICE_API DescribeReplicationTaskIndividualAssessmentsResult& 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 DescribeReplicationTaskIndividualAssessmentsResult& 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 DescribeReplicationTaskIndividualAssessmentsResult& 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 DescribeReplicationTaskIndividualAssessmentsResult& WithMarker(const char* value) { SetMarker(value); return *this;} /** *

One or more individual assessments as specified by Filters.

*/ inline const Aws::Vector& GetReplicationTaskIndividualAssessments() const{ return m_replicationTaskIndividualAssessments; } /** *

One or more individual assessments as specified by Filters.

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

One or more individual assessments as specified by Filters.

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

One or more individual assessments as specified by Filters.

*/ inline DescribeReplicationTaskIndividualAssessmentsResult& WithReplicationTaskIndividualAssessments(const Aws::Vector& value) { SetReplicationTaskIndividualAssessments(value); return *this;} /** *

One or more individual assessments as specified by Filters.

*/ inline DescribeReplicationTaskIndividualAssessmentsResult& WithReplicationTaskIndividualAssessments(Aws::Vector&& value) { SetReplicationTaskIndividualAssessments(std::move(value)); return *this;} /** *

One or more individual assessments as specified by Filters.

*/ inline DescribeReplicationTaskIndividualAssessmentsResult& AddReplicationTaskIndividualAssessments(const ReplicationTaskIndividualAssessment& value) { m_replicationTaskIndividualAssessments.push_back(value); return *this; } /** *

One or more individual assessments as specified by Filters.

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