UNPKG

@csermet/multiprovider

Version:

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

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