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

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

Overview

Describes the state of a Client VPN endpoint.

Constant Summary collapse

SENSITIVE =
[]

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)


5707
5708
5709
5710
5711
5712
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5707

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

#messageString

A message about the status of the Client VPN endpoint.

Returns:

  • (String)


5707
5708
5709
5710
5711
5712
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/types.rb', line 5707

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