Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ClientVpnConnection

import type { ClientVpnConnection } from "https://aws-api.deno.dev/v0.3/services/ec2.ts?docs=full";

Describes a client connection.

interface ClientVpnConnection {
ClientIp?: string | null;
ClientVpnEndpointId?: string | null;
CommonName?: string | null;
ConnectionEndTime?: string | null;
ConnectionEstablishedTime?: string | null;
ConnectionId?: string | null;
EgressBytes?: string | null;
EgressPackets?: string | null;
IngressBytes?: string | null;
IngressPackets?: string | null;
PostureComplianceStatuses: string[];
Status?: ClientVpnConnectionStatus | null;
Timestamp?: string | null;
Username?: string | null;
}

§Properties

§
ClientIp?: string | null
[src]

The IP address of the client.

§
ClientVpnEndpointId?: string | null
[src]

The ID of the Client VPN endpoint to which the client is connected.

§
CommonName?: string | null
[src]

The common name associated with the client. This is either the name of the client certificate, or the Active Directory user name.

§
ConnectionEndTime?: string | null
[src]

The date and time the client connection was terminated.

§
ConnectionEstablishedTime?: string | null
[src]

The date and time the client connection was established.

§
ConnectionId?: string | null
[src]

The ID of the client connection.

§
EgressBytes?: string | null
[src]

The number of bytes received by the client.

§
EgressPackets?: string | null
[src]

The number of packets received by the client.

§
IngressBytes?: string | null
[src]

The number of bytes sent by the client.

§
IngressPackets?: string | null
[src]

The number of packets sent by the client.

§
PostureComplianceStatuses: string[]
[src]

The statuses returned by the client connect handler for posture compliance, if applicable.

§

The current state of the client connection.

§
Timestamp?: string | null
[src]

The current date and time.

§
Username?: string | null
[src]

The username of the client who established the client connection. This information is only provided if Active Directory client authentication is used.