Class: Aws::EC2::Types::ClientVpnEndpointStatus

Inherits:
Struct
  • Object
show all
Includes:
Structure
Defined in:
lib/aws-sdk-ec2/types.rb

Overview

Describes the state of a Client VPN endpoint.

Instance Attribute Summary collapse

Instance Attribute Details

#codeString

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.

Returns:

  • (String)


3240
3241
3242
3243
3244
# File 'lib/aws-sdk-ec2/types.rb', line 3240

class ClientVpnEndpointStatus < Struct.new(
  :code,
  :message)
  include Aws::Structure
end

#messageString

A message about the status of the Client VPN endpoint.

Returns:

  • (String)


3240
3241
3242
3243
3244
# File 'lib/aws-sdk-ec2/types.rb', line 3240

class ClientVpnEndpointStatus < Struct.new(
  :code,
  :message)
  include Aws::Structure
end