/* 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 Protocol = "tcp" | "udp"; /** * Resource schema for AWS::EC2::NetworkInsightsAccessScope */ export interface AwsEc2Networkinsightsaccessscope { NetworkInsightsAccessScopeId?: string; NetworkInsightsAccessScopeArn?: string; CreatedDate?: string; UpdatedDate?: string; Tags?: Tag[]; MatchPaths?: AccessScopePathRequest[]; ExcludePaths?: AccessScopePathRequest[]; } export interface Tag { Key: string; Value?: string; } export interface AccessScopePathRequest { Source?: PathStatementRequest; Destination?: PathStatementRequest; ThroughResources?: ThroughResourcesStatementRequest[]; } export interface PathStatementRequest { PacketHeaderStatement?: PacketHeaderStatementRequest; ResourceStatement?: ResourceStatementRequest; } export interface PacketHeaderStatementRequest { SourceAddresses?: string[]; DestinationAddresses?: string[]; SourcePorts?: string[]; DestinationPorts?: string[]; SourcePrefixLists?: string[]; DestinationPrefixLists?: string[]; Protocols?: Protocol[]; } export interface ResourceStatementRequest { Resources?: string[]; ResourceTypes?: string[]; } export interface ThroughResourcesStatementRequest { ResourceStatement?: ResourceStatementRequest; }