/* 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. */ export type Port = number; export type IpAddress = string; export type Protocol = "tcp" | "udp"; /** * Resource schema for AWS::EC2::NetworkInsightsPath */ export interface AwsEc2Networkinsightspath { Destination?: string; NetworkInsightsPathId?: string; NetworkInsightsPathArn?: string; DestinationPort?: Port; Source: string; DestinationIp?: IpAddress; SourceIp?: IpAddress; SourceArn?: string; CreatedDate?: string; Protocol: Protocol; DestinationArn?: string; Tags?: Tag[]; } export interface Tag { Value?: string; Key: string; }