Class: Aws::EC2::Types::ClientVpnEndpointStatus
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::EC2::Types::ClientVpnEndpointStatus
 
 
- Includes:
 - Structure
 
- Defined in:
 - lib/aws-sdk-ec2/types.rb
 
Overview
Describes the state of a Client VPN endpoint.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #code  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The state of the Client VPN endpoint.
 - 
  
    
      #message  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
A message about the status of the Client VPN endpoint.
 
Instance Attribute Details
#code ⇒ String
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.
 
      6373 6374 6375 6376 6377 6378  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6373 class ClientVpnEndpointStatus < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  | 
  
#message ⇒ String
A message about the status of the Client VPN endpoint.
      6373 6374 6375 6376 6377 6378  | 
    
      # File 'lib/aws-sdk-ec2/types.rb', line 6373 class ClientVpnEndpointStatus < Struct.new( :code, :message) SENSITIVE = [] include Aws::Structure end  |