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

CreateVpcLinkRequest

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

Creates a VPC link

interface CreateVpcLinkRequest {
Name: string;
SecurityGroupIds?: string[] | null;
SubnetIds: string[];
Tags?: {
[key: string]: string | null | undefined;
}
| null;
}

§Properties

§
Name: string
[src]

The name of the VPC link.

§
SecurityGroupIds?: string[] | null
[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]

A list of tags.