/** * 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 MigrationHubStrategyRecommendations { namespace Model { class GetRecommendationReportDetailsResult { public: AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API GetRecommendationReportDetailsResult(); AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API GetRecommendationReportDetailsResult(const Aws::AmazonWebServiceResult& result); AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API GetRecommendationReportDetailsResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

*/ inline const Aws::String& GetId() const{ return m_id; } /** *

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

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

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

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

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

*/ inline void SetId(const char* value) { m_id.assign(value); } /** *

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

*/ inline GetRecommendationReportDetailsResult& WithId(const Aws::String& value) { SetId(value); return *this;} /** *

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

*/ inline GetRecommendationReportDetailsResult& WithId(Aws::String&& value) { SetId(std::move(value)); return *this;} /** *

The ID of the recommendation report generation task. See the response of * StartRecommendationReportGeneration.

*/ inline GetRecommendationReportDetailsResult& WithId(const char* value) { SetId(value); return *this;} /** *

Detailed information about the recommendation report.

*/ inline const RecommendationReportDetails& GetRecommendationReportDetails() const{ return m_recommendationReportDetails; } /** *

Detailed information about the recommendation report.

*/ inline void SetRecommendationReportDetails(const RecommendationReportDetails& value) { m_recommendationReportDetails = value; } /** *

Detailed information about the recommendation report.

*/ inline void SetRecommendationReportDetails(RecommendationReportDetails&& value) { m_recommendationReportDetails = std::move(value); } /** *

Detailed information about the recommendation report.

*/ inline GetRecommendationReportDetailsResult& WithRecommendationReportDetails(const RecommendationReportDetails& value) { SetRecommendationReportDetails(value); return *this;} /** *

Detailed information about the recommendation report.

*/ inline GetRecommendationReportDetailsResult& WithRecommendationReportDetails(RecommendationReportDetails&& value) { SetRecommendationReportDetails(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 GetRecommendationReportDetailsResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline GetRecommendationReportDetailsResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline GetRecommendationReportDetailsResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_id; RecommendationReportDetails m_recommendationReportDetails; Aws::String m_requestId; }; } // namespace Model } // namespace MigrationHubStrategyRecommendations } // namespace Aws