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

VpcLink

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

Represents a VPC link.

interface VpcLink {
CreatedDate?: Date | number | null;
Name: string;
SecurityGroupIds: string[];
SubnetIds: string[];
Tags?: {
[key: string]: string | null | undefined;
}
| null;
VpcLinkId: string;
VpcLinkStatus?: VpcLinkStatus | null;
VpcLinkStatusMessage?: string | null;
VpcLinkVersion?: VpcLinkVersion | null;
}

§Properties

§
CreatedDate?: Date | number | null
[src]

The timestamp when the VPC link was created.

§
Name: string
[src]

The name of the VPC link.

§
SecurityGroupIds: string[]
[src]

A list of security group IDs for the VPC link.

§
SubnetIds: string[]
[src]

A list of subnet IDs to include in the VPC link.

§
Tags?: {
[key: string]: string | null | undefined;
}
| null
[src]

Tags for the VPC link.

§
VpcLinkId: string
[src]

The ID of the VPC link.

§
VpcLinkStatus?: VpcLinkStatus | null
[src]

The status of the VPC link.

§
VpcLinkStatusMessage?: string | null
[src]

A message summarizing the cause of the status of the VPC link.

§
VpcLinkVersion?: VpcLinkVersion | null
[src]

The version of the VPC link.