/** * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved. * SPDX-License-Identifier: Apache-2.0. */ #pragma once #include #include #include #include #include namespace Aws { namespace Utils { namespace Xml { class XmlNode; } // namespace Xml } // namespace Utils namespace EC2 { namespace Model { /** *

Describes the state of a Client VPN endpoint route.

See Also:

* AWS * API Reference

*/ class ClientVpnRouteStatus { public: AWS_EC2_API ClientVpnRouteStatus(); AWS_EC2_API ClientVpnRouteStatus(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API ClientVpnRouteStatus& operator=(const Aws::Utils::Xml::XmlNode& xmlNode); AWS_EC2_API void OutputToStream(Aws::OStream& ostream, const char* location, unsigned index, const char* locationValue) const; AWS_EC2_API void OutputToStream(Aws::OStream& oStream, const char* location) const; /** *

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