HEX
Server: Apache
System: Linux vps-cdc32557.vps.ovh.ca 5.15.0-156-generic #166-Ubuntu SMP Sat Aug 9 00:02:46 UTC 2025 x86_64
User: hanode (1017)
PHP: 7.4.33
Disabled: pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare,
Upload Files
File: //usr/lib/python3/dist-packages/awscli/examples/ec2/describe-client-vpn-endpoints.rst
**To describe your Client VPN endpoints**

The following ``describe-client-vpn-endpoints`` example displays details about all of your Client VPN endpoints. ::

    aws ec2 describe-client-vpn-endpoints

Output::

    {
        "ClientVpnEndpoints": [
            {
                "ClientVpnEndpointId": "cvpn-endpoint-123456789123abcde",
                "Description": "Endpoint for Admin access",
                "Status": {
                    "Code": "available"
                },
                "CreationTime": "2020-11-13T11:37:27",
                "DnsName": "*.cvpn-endpoint-123456789123abcde.prod.clientvpn.ap-south-1.amazonaws.com",
                "ClientCidrBlock": "172.31.0.0/16",
                "DnsServers": [
                    "8.8.8.8"
                ],
                "SplitTunnel": false,
                "VpnProtocol": "openvpn",
                "TransportProtocol": "udp",
                "VpnPort": 443,
                "ServerCertificateArn": "arn:aws:acm:ap-south-1:123456789012:certificate/a1b2c3d4-5678-90ab-cdef-11111EXAMPLE",
                "AuthenticationOptions": [
                    {
                        "Type": "certificate-authentication",
                        "MutualAuthentication": {
                            "ClientRootCertificateChain": "arn:aws:acm:ap-south-1:123456789012:certificate/a1b2c3d4-5678-90ab-cdef-22222EXAMPLE"
                        }
                    }
                ],
                "ConnectionLogOptions": {
                    "Enabled": true,
                    "CloudwatchLogGroup": "Client-vpn-connection-logs",
                    "CloudwatchLogStream": "cvpn-endpoint-123456789123abcde-ap-south-1-2020/11/13-FCD8HEMVaCcw"
                },
                "Tags": [
                    {
                        "Key": "Name",
                        "Value": "Client VPN"
                    }
                ],
                "SecurityGroupIds": [
                    "sg-aabbcc11223344567"
                ],
                "VpcId": "vpc-a87f92c1",
                "SelfServicePortalUrl": "https://self-service.clientvpn.amazonaws.com/endpoints/cvpn-endpoint-123456789123abcde",
                "ClientConnectOptions": {
                     "Enabled": false
                }
            }
        ]
    }

For more information, see `Client VPN Endpoints <https://docs.aws.amazon.com/vpn/latest/clientvpn-admin/cvpn-working-endpoints.html>`__ in the *AWS Client VPN Administrator Guide*.