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

TargetNetwork

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

Describes a target network associated with a Client VPN endpoint.

interface TargetNetwork {
AssociationId?: string | null;
ClientVpnEndpointId?: string | null;
SecurityGroups: string[];
Status?: AssociationStatus | null;
TargetNetworkId?: string | null;
VpcId?: string | null;
}

§Properties

§
AssociationId?: string | null
[src]

The ID of the association.

§
ClientVpnEndpointId?: string | null
[src]

The ID of the Client VPN endpoint with which the target network is associated.

§
SecurityGroups: string[]
[src]

The IDs of the security groups applied to the target network association.

§
Status?: AssociationStatus | null
[src]

The current state of the target network association.

§
TargetNetworkId?: string | null
[src]

The ID of the subnet specified as the target network.

§
VpcId?: string | null
[src]

The ID of the VPC in which the target network (subnet) is located.