/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { template class AmazonWebServiceResult; namespace Utils { namespace Json { class JsonValue; } // namespace Json } // namespace Utils namespace MigrationHubStrategyRecommendations { namespace Model { class StartAssessmentResult { public: AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API StartAssessmentResult(); AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API StartAssessmentResult(const Aws::AmazonWebServiceResult& result); AWS_MIGRATIONHUBSTRATEGYRECOMMENDATIONS_API StartAssessmentResult& operator=(const Aws::AmazonWebServiceResult& result); /** *

The ID of the assessment.

*/ inline const Aws::String& GetAssessmentId() const{ return m_assessmentId; } /** *

The ID of the assessment.

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

The ID of the assessment.

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

The ID of the assessment.

*/ inline void SetAssessmentId(const char* value) { m_assessmentId.assign(value); } /** *

The ID of the assessment.

*/ inline StartAssessmentResult& WithAssessmentId(const Aws::String& value) { SetAssessmentId(value); return *this;} /** *

The ID of the assessment.

*/ inline StartAssessmentResult& WithAssessmentId(Aws::String&& value) { SetAssessmentId(std::move(value)); return *this;} /** *

The ID of the assessment.

*/ inline StartAssessmentResult& WithAssessmentId(const char* value) { SetAssessmentId(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 StartAssessmentResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline StartAssessmentResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline StartAssessmentResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_assessmentId; Aws::String m_requestId; }; } // namespace Model } // namespace MigrationHubStrategyRecommendations } // namespace Aws