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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

An optional pagination token provided by a previous request. If this * parameter is specified, the response includes only records beyond the marker, up * to the value specified by MaxRecords.

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

- The Amazon S3 bucket where the task assessment report is located.

*/ inline const Aws::String& GetBucketName() const{ return m_bucketName; } /** *

- The Amazon S3 bucket where the task assessment report is located.

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

- The Amazon S3 bucket where the task assessment report is located.

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

- The Amazon S3 bucket where the task assessment report is located.

*/ inline void SetBucketName(const char* value) { m_bucketName.assign(value); } /** *

- The Amazon S3 bucket where the task assessment report is located.

*/ inline DescribeReplicationTaskAssessmentResultsResult& WithBucketName(const Aws::String& value) { SetBucketName(value); return *this;} /** *

- The Amazon S3 bucket where the task assessment report is located.

*/ inline DescribeReplicationTaskAssessmentResultsResult& WithBucketName(Aws::String&& value) { SetBucketName(std::move(value)); return *this;} /** *

- The Amazon S3 bucket where the task assessment report is located.

*/ inline DescribeReplicationTaskAssessmentResultsResult& WithBucketName(const char* value) { SetBucketName(value); return *this;} /** *

The task assessment report.

*/ inline const Aws::Vector& GetReplicationTaskAssessmentResults() const{ return m_replicationTaskAssessmentResults; } /** *

The task assessment report.

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

The task assessment report.

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

The task assessment report.

*/ inline DescribeReplicationTaskAssessmentResultsResult& WithReplicationTaskAssessmentResults(const Aws::Vector& value) { SetReplicationTaskAssessmentResults(value); return *this;} /** *

The task assessment report.

*/ inline DescribeReplicationTaskAssessmentResultsResult& WithReplicationTaskAssessmentResults(Aws::Vector&& value) { SetReplicationTaskAssessmentResults(std::move(value)); return *this;} /** *

The task assessment report.

*/ inline DescribeReplicationTaskAssessmentResultsResult& AddReplicationTaskAssessmentResults(const ReplicationTaskAssessmentResult& value) { m_replicationTaskAssessmentResults.push_back(value); return *this; } /** *

The task assessment report.

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