UNPKG

@csermet/multiprovider

Version:

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

21 lines (20 loc) 493 B
import { Config } from 'aws-sdk/lib/config'; import { Vpc } from 'aws-sdk/clients/ec2'; import { TagMap } from '../../types'; /** * VPC */ export interface RawAwsVpc extends Omit<Vpc, 'Tags'> { enableDnsHostnames?: boolean; enableDnsSupport?: boolean; region: string; Tags: TagMap; flowLogs: any; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [property: string]: RawAwsVpc[]; }>; export default _default;