/** * 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 Route53RecoveryReadiness { namespace Model { /** *

Recommendations that are provided to make an application more recovery * resilient.

See Also:

AWS * API Reference

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

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline const Aws::String& GetRecommendationText() const{ return m_recommendationText; } /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline bool RecommendationTextHasBeenSet() const { return m_recommendationTextHasBeenSet; } /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline void SetRecommendationText(const Aws::String& value) { m_recommendationTextHasBeenSet = true; m_recommendationText = value; } /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline void SetRecommendationText(Aws::String&& value) { m_recommendationTextHasBeenSet = true; m_recommendationText = std::move(value); } /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline void SetRecommendationText(const char* value) { m_recommendationTextHasBeenSet = true; m_recommendationText.assign(value); } /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline Recommendation& WithRecommendationText(const Aws::String& value) { SetRecommendationText(value); return *this;} /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline Recommendation& WithRecommendationText(Aws::String&& value) { SetRecommendationText(std::move(value)); return *this;} /** *

Text of the recommendations that are provided to make an application more * recovery resilient.

*/ inline Recommendation& WithRecommendationText(const char* value) { SetRecommendationText(value); return *this;} private: Aws::String m_recommendationText; bool m_recommendationTextHasBeenSet = false; }; } // namespace Model } // namespace Route53RecoveryReadiness } // namespace Aws