UNPKG

@csermet/multiprovider

Version:

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

18 lines (17 loc) 432 B
import { Config } from 'aws-sdk/lib/config'; import { InternetGateway } from 'aws-sdk/clients/ec2'; import { TagMap } from '../../types'; /** * IGW */ export interface RawAwsIgw extends Omit<InternetGateway, 'Tags'> { Tags: TagMap; region: string; } declare const _default: ({ config, regions, }: { config: Config; regions: string; }) => Promise<{ [property: string]: RawAwsIgw[]; }>; export default _default;