/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include namespace Aws { namespace Utils { namespace Json { class JsonValue; class JsonView; } // namespace Json } // namespace Utils namespace DatabaseMigrationService { namespace Model { /** *

Describes a large-scale assessment (LSA) analysis run by a Fleet Advisor * collector.

See Also:

AWS * API Reference

*/ class FleetAdvisorLsaAnalysisResponse { public: AWS_DATABASEMIGRATIONSERVICE_API FleetAdvisorLsaAnalysisResponse(); AWS_DATABASEMIGRATIONSERVICE_API FleetAdvisorLsaAnalysisResponse(Aws::Utils::Json::JsonView jsonValue); AWS_DATABASEMIGRATIONSERVICE_API FleetAdvisorLsaAnalysisResponse& operator=(Aws::Utils::Json::JsonView jsonValue); AWS_DATABASEMIGRATIONSERVICE_API Aws::Utils::Json::JsonValue Jsonize() const; /** *

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

*/ inline bool LsaAnalysisIdHasBeenSet() const { return m_lsaAnalysisIdHasBeenSet; } /** *

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The ID of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

*/ inline bool StatusHasBeenSet() const { return m_statusHasBeenSet; } /** *

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

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

The status of an LSA analysis run by a Fleet Advisor collector.

*/ inline FleetAdvisorLsaAnalysisResponse& WithStatus(const char* value) { SetStatus(value); return *this;} private: Aws::String m_lsaAnalysisId; bool m_lsaAnalysisIdHasBeenSet = false; Aws::String m_status; bool m_statusHasBeenSet = false; }; } // namespace Model } // namespace DatabaseMigrationService } // namespace Aws