/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Information relating to readiness check status.See Also:
AWS
* API Reference
The text of a readiness check message.
*/ inline const Aws::String& GetMessageText() const{ return m_messageText; } /** *The text of a readiness check message.
*/ inline bool MessageTextHasBeenSet() const { return m_messageTextHasBeenSet; } /** *The text of a readiness check message.
*/ inline void SetMessageText(const Aws::String& value) { m_messageTextHasBeenSet = true; m_messageText = value; } /** *The text of a readiness check message.
*/ inline void SetMessageText(Aws::String&& value) { m_messageTextHasBeenSet = true; m_messageText = std::move(value); } /** *The text of a readiness check message.
*/ inline void SetMessageText(const char* value) { m_messageTextHasBeenSet = true; m_messageText.assign(value); } /** *The text of a readiness check message.
*/ inline Message& WithMessageText(const Aws::String& value) { SetMessageText(value); return *this;} /** *The text of a readiness check message.
*/ inline Message& WithMessageText(Aws::String&& value) { SetMessageText(std::move(value)); return *this;} /** *The text of a readiness check message.
*/ inline Message& WithMessageText(const char* value) { SetMessageText(value); return *this;} private: Aws::String m_messageText; bool m_messageTextHasBeenSet = false; }; } // namespace Model } // namespace Route53RecoveryReadiness } // namespace Aws