import * as $dara from '@darabonba/typescript'; export declare class DescribePrefixListAttributesResponseBodyEntriesEntry extends $dara.Model { cidr?: string; description?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePrefixListAttributesResponseBodyEntries extends $dara.Model { entry?: DescribePrefixListAttributesResponseBodyEntriesEntry[]; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); } export declare class DescribePrefixListAttributesResponseBody extends $dara.Model { /** * @remarks * The IP address family of the prefix list. Valid values: * * * IPv4 * * IPv6 * * @example * IPv4 */ addressFamily?: string; /** * @remarks * The time when the prefix list was created. * * @example * 2021-02-20T07:11Z */ creationTime?: string; /** * @remarks * The description of the prefix list. * * @example * This is description. */ description?: string; entries?: DescribePrefixListAttributesResponseBodyEntries; /** * @remarks * The maximum number of entries in the prefix list. * * @example * 10 */ maxEntries?: number; /** * @remarks * The ID of the prefix list. * * @example * pl-x1j1k5ykzqlixdcy**** */ prefixListId?: string; /** * @remarks * The name of the prefix list. * * @example * PrefixListNameSample */ prefixListName?: string; /** * @remarks * The request ID. * * @example * 38793DB8-A4B2-4AEC-BFD3-111234E9188D */ requestId?: string; static names(): { [key: string]: string; }; static types(): { [key: string]: any; }; validate(): void; constructor(map?: { [key: string]: any; }); }