/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include SMS settings for authentication.See Also:
AWS
* API Reference
The contents of the SMS message.
*/ inline const Aws::String& GetSmsMessage() const{ return m_smsMessage; } /** *The contents of the SMS message.
*/ inline bool SmsMessageHasBeenSet() const { return m_smsMessageHasBeenSet; } /** *The contents of the SMS message.
*/ inline void SetSmsMessage(const Aws::String& value) { m_smsMessageHasBeenSet = true; m_smsMessage = value; } /** *The contents of the SMS message.
*/ inline void SetSmsMessage(Aws::String&& value) { m_smsMessageHasBeenSet = true; m_smsMessage = std::move(value); } /** *The contents of the SMS message.
*/ inline void SetSmsMessage(const char* value) { m_smsMessageHasBeenSet = true; m_smsMessage.assign(value); } /** *The contents of the SMS message.
*/ inline SmsSettings& WithSmsMessage(const Aws::String& value) { SetSmsMessage(value); return *this;} /** *The contents of the SMS message.
*/ inline SmsSettings& WithSmsMessage(Aws::String&& value) { SetSmsMessage(std::move(value)); return *this;} /** *The contents of the SMS message.
*/ inline SmsSettings& WithSmsMessage(const char* value) { SetSmsMessage(value); return *this;} private: Aws::String m_smsMessage; bool m_smsMessageHasBeenSet = false; }; } // namespace Model } // namespace AmplifyBackend } // namespace Aws