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

The ID of the LSA analysis run.

*/ inline const Aws::String& GetLsaAnalysisId() const{ return m_lsaAnalysisId; } /** *

The ID of the LSA analysis run.

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

The ID of the LSA analysis run.

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

The ID of the LSA analysis run.

*/ inline void SetLsaAnalysisId(const char* value) { m_lsaAnalysisId.assign(value); } /** *

The ID of the LSA analysis run.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithLsaAnalysisId(const Aws::String& value) { SetLsaAnalysisId(value); return *this;} /** *

The ID of the LSA analysis run.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithLsaAnalysisId(Aws::String&& value) { SetLsaAnalysisId(std::move(value)); return *this;} /** *

The ID of the LSA analysis run.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithLsaAnalysisId(const char* value) { SetLsaAnalysisId(value); return *this;} /** *

The status of the LSA analysis, for example COMPLETED.

*/ inline const Aws::String& GetStatus() const{ return m_status; } /** *

The status of the LSA analysis, for example COMPLETED.

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

The status of the LSA analysis, for example COMPLETED.

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

The status of the LSA analysis, for example COMPLETED.

*/ inline void SetStatus(const char* value) { m_status.assign(value); } /** *

The status of the LSA analysis, for example COMPLETED.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithStatus(const Aws::String& value) { SetStatus(value); return *this;} /** *

The status of the LSA analysis, for example COMPLETED.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithStatus(Aws::String&& value) { SetStatus(std::move(value)); return *this;} /** *

The status of the LSA analysis, for example COMPLETED.

*/ inline RunFleetAdvisorLsaAnalysisResult& WithStatus(const char* value) { SetStatus(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 RunFleetAdvisorLsaAnalysisResult& WithRequestId(const Aws::String& value) { SetRequestId(value); return *this;} inline RunFleetAdvisorLsaAnalysisResult& WithRequestId(Aws::String&& value) { SetRequestId(std::move(value)); return *this;} inline RunFleetAdvisorLsaAnalysisResult& WithRequestId(const char* value) { SetRequestId(value); return *this;} private: Aws::String m_lsaAnalysisId; Aws::String m_status; Aws::String m_requestId; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws