/* 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. */ /** * Resource schema of AWS::EC2::PrefixList Type */ export interface AwsEc2Prefixlist { /** * Name of Prefix List. */ PrefixListName: string; /** * Id of Prefix List. */ PrefixListId?: string; /** * Owner Id of Prefix List. */ OwnerId?: string; /** * Ip Version of Prefix List. */ AddressFamily: "IPv4" | "IPv6"; /** * Max Entries of Prefix List. */ MaxEntries: number; /** * Version of Prefix List. */ Version?: number; /** * Tags for Prefix List */ Tags?: Tag[]; /** * Entries of Prefix List. */ Entries?: Entry[]; /** * The Amazon Resource Name (ARN) of the Prefix List. */ Arn?: string; } export interface Tag { Key: string; Value?: string; } export interface Entry { Cidr: string; Description?: string; }