UNPKG

@altostra/core

Version:

Core library for shared types and logic

15 lines (14 loc) 574 B
import type { NonEmptyString } from "../../../common/CustomTypes/NonEmptyString"; import type { Arn } from "../../Arn"; import type { AwsResourceCommon, CloudFormationTags } from "../common"; import type { CloudFormationValue } from "../IntrinsicFunctions"; export declare type VpcLinkType = 'AWS::ApiGateway::VpcLink'; export interface VpcLink extends AwsResourceCommon { Type: VpcLinkType; Properties: { Name: NonEmptyString; Description?: NonEmptyString; TargetArns: CloudFormationValue<Arn>[]; Tags?: CloudFormationTags; }; }