/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #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 DescribeApplicableIndividualAssessmentsResult { public: AWS_DATABASEMIGRATIONSERVICE_API DescribeApplicableIndividualAssessmentsResult(); AWS_DATABASEMIGRATIONSERVICE_API DescribeApplicableIndividualAssessmentsResult(const Aws::AmazonWebServiceResult& result); AWS_DATABASEMIGRATIONSERVICE_API DescribeApplicableIndividualAssessmentsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline const Aws::Vector& GetIndividualAssessmentNames() const{ return m_individualAssessmentNames; } /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

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

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

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

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline DescribeApplicableIndividualAssessmentsResult& WithIndividualAssessmentNames(const Aws::Vector& value) { SetIndividualAssessmentNames(value); return *this;} /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline DescribeApplicableIndividualAssessmentsResult& WithIndividualAssessmentNames(Aws::Vector&& value) { SetIndividualAssessmentNames(std::move(value)); return *this;} /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline DescribeApplicableIndividualAssessmentsResult& AddIndividualAssessmentNames(const Aws::String& value) { m_individualAssessmentNames.push_back(value); return *this; } /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline DescribeApplicableIndividualAssessmentsResult& AddIndividualAssessmentNames(Aws::String&& value) { m_individualAssessmentNames.push_back(std::move(value)); return *this; } /** *

List of names for the individual assessments supported by the premigration * assessment run that you start based on the specified request parameters. For * more information on the available individual assessments, including * compatibility with different migration task configurations, see Working * with premigration assessment runs in the Database Migration Service User * Guide.

*/ inline DescribeApplicableIndividualAssessmentsResult& AddIndividualAssessmentNames(const char* value) { m_individualAssessmentNames.push_back(value); return *this; } /** *

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; } /** *

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; } /** *

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); } /** *

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); } /** *

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 DescribeApplicableIndividualAssessmentsResult& WithMarker(const Aws::String& value) { SetMarker(value); return *this;} /** *

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 DescribeApplicableIndividualAssessmentsResult& WithMarker(Aws::String&& value) { SetMarker(std::move(value)); return *this;} /** *

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