/**
* 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.See Also:
AWS
* API Reference
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
The state of the Client VPN endpoint. Possible states include:
pending-associate
- The Client VPN endpoint has been created
* but no target networks have been associated. The Client VPN endpoint cannot
* accept connections.
available
- The Client VPN
* endpoint has been created and a target network has been associated. The Client
* VPN endpoint can accept connections.
deleting
-
* The Client VPN endpoint is being deleted. The Client VPN endpoint cannot accept
* connections.
deleted
- The Client VPN endpoint
* has been deleted. The Client VPN endpoint cannot accept connections.
A message about the status of the Client VPN endpoint.
*/ inline const Aws::String& GetMessage() const{ return m_message; } /** *A message about the status of the Client VPN endpoint.
*/ inline bool MessageHasBeenSet() const { return m_messageHasBeenSet; } /** *A message about the status of the Client VPN endpoint.
*/ inline void SetMessage(const Aws::String& value) { m_messageHasBeenSet = true; m_message = value; } /** *A message about the status of the Client VPN endpoint.
*/ inline void SetMessage(Aws::String&& value) { m_messageHasBeenSet = true; m_message = std::move(value); } /** *A message about the status of the Client VPN endpoint.
*/ inline void SetMessage(const char* value) { m_messageHasBeenSet = true; m_message.assign(value); } /** *A message about the status of the Client VPN endpoint.
*/ inline ClientVpnEndpointStatus& WithMessage(const Aws::String& value) { SetMessage(value); return *this;} /** *A message about the status of the Client VPN endpoint.
*/ inline ClientVpnEndpointStatus& WithMessage(Aws::String&& value) { SetMessage(std::move(value)); return *this;} /** *A message about the status of the Client VPN endpoint.
*/ inline ClientVpnEndpointStatus& WithMessage(const char* value) { SetMessage(value); return *this;} private: ClientVpnEndpointStatusCode m_code; bool m_codeHasBeenSet = false; Aws::String m_message; bool m_messageHasBeenSet = false; }; } // namespace Model } // namespace EC2 } // namespace Aws