/**
* Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
* SPDX-License-Identifier: Apache-2.0.
*/
#pragma once
#include Describes the state of a Client VPN endpoint route.See Also:
* AWS
* API Reference
The state of the Client VPN endpoint route.
*/ inline const ClientVpnRouteStatusCode& GetCode() const{ return m_code; } /** *The state of the Client VPN endpoint route.
*/ inline bool CodeHasBeenSet() const { return m_codeHasBeenSet; } /** *The state of the Client VPN endpoint route.
*/ inline void SetCode(const ClientVpnRouteStatusCode& value) { m_codeHasBeenSet = true; m_code = value; } /** *The state of the Client VPN endpoint route.
*/ inline void SetCode(ClientVpnRouteStatusCode&& value) { m_codeHasBeenSet = true; m_code = std::move(value); } /** *The state of the Client VPN endpoint route.
*/ inline ClientVpnRouteStatus& WithCode(const ClientVpnRouteStatusCode& value) { SetCode(value); return *this;} /** *The state of the Client VPN endpoint route.
*/ inline ClientVpnRouteStatus& WithCode(ClientVpnRouteStatusCode&& value) { SetCode(std::move(value)); return *this;} /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline ClientVpnRouteStatus& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline ClientVpnRouteStatus& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message about the status of the Client VPN endpoint route, if * applicable.
*/ inline ClientVpnRouteStatus& WithMessage(const char* value) { SetMessage(value); return *this;} private: ClientVpnRouteStatusCode m_code; bool m_codeHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws