UNPKG

@csermet/multiprovider

Version:

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

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