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

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

*/ inline const Aws::String& GetNextToken() const{ return m_nextToken; } /** *

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

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

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

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

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

*/ inline void SetNextToken(const char* value) { m_nextToken.assign(value); } /** *

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

*/ inline DescribeRecommendationLimitationsResult& WithNextToken(const Aws::String& value) { SetNextToken(value); return *this;} /** *

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

*/ inline DescribeRecommendationLimitationsResult& WithNextToken(Aws::String&& value) { SetNextToken(std::move(value)); return *this;} /** *

The unique pagination token returned for you to pass to a subsequent request. * Fleet Advisor returns this token when the number of records in the response is * greater than the MaxRecords value. To retrieve the next page, make * the call again using the returned token and keeping all other arguments * unchanged.

*/ inline DescribeRecommendationLimitationsResult& WithNextToken(const char* value) { SetNextToken(value); return *this;} /** *

The list of limitations for recommendations of target Amazon Web Services * engines.

*/ inline const Aws::Vector& GetLimitations() const{ return m_limitations; } /** *

The list of limitations for recommendations of target Amazon Web Services * engines.

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

The list of limitations for recommendations of target Amazon Web Services * engines.

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

The list of limitations for recommendations of target Amazon Web Services * engines.

*/ inline DescribeRecommendationLimitationsResult& WithLimitations(const Aws::Vector& value) { SetLimitations(value); return *this;} /** *

The list of limitations for recommendations of target Amazon Web Services * engines.

*/ inline DescribeRecommendationLimitationsResult& WithLimitations(Aws::Vector&& value) { SetLimitations(std::move(value)); return *this;} /** *

The list of limitations for recommendations of target Amazon Web Services * engines.

*/ inline DescribeRecommendationLimitationsResult& AddLimitations(const Limitation& value) { m_limitations.push_back(value); return *this; } /** *

The list of limitations for recommendations of target Amazon Web Services * engines.

*/ inline DescribeRecommendationLimitationsResult& AddLimitations(Limitation&& value) { m_limitations.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 DescribeRecommendationLimitationsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline DescribeRecommendationLimitationsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline DescribeRecommendationLimitationsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_nextToken; Aws::Vector m_limitations; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws