/* eslint-disable */ /** * This file was automatically generated by json-schema-to-typescript. * DO NOT MODIFY IT BY HAND. Instead, modify the source JSONSchema file, * and run json-schema-to-typescript to regenerate this file. */ /** * Schema for AWS ApiGateway VpcLink */ export interface AwsApigatewayVpclink { /** * A name for the VPC link. */ Name: string; /** * A description of the VPC link. */ Description?: string; /** * An array of arbitrary tags (key-value pairs) to associate with the stage. */ Tags?: Tag[]; /** * The ARN of network load balancer of the VPC targeted by the VPC link. The network load balancer must be owned by the same AWS account of the API owner. */ TargetArns: string[]; /** * The ID of the instance that backs VPC link. */ VpcLinkId?: string; } export interface Tag { Value: string; Key: string; }