/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Recommendations that are provided to make an application more recovery
* resilient.See Also:
AWS
* API Reference
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