UNPKG

@csermet/multiprovider

Version:

cloud-graph provider plugin for AWS used to fetch AWS cloud data.

19 lines (18 loc) 529 B
import { ManagedPrefixList, PrefixListEntry } from 'aws-sdk/clients/ec2'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; /** * Managed Prefix List */ export interface RawAwsManagedPrefixList extends Omit<ManagedPrefixList, 'Tags'> { region: string; Tags?: TagMap; Entries?: PrefixListEntry[]; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsManagedPrefixList[]; }>; export default _default;