@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
15 lines (14 loc) • 398 B
TypeScript
import { Config } from 'aws-sdk/lib/config';
import { FlowLog } from 'aws-sdk/clients/ec2';
import { TagMap } from '../../types';
export interface RawFlowLog extends Omit<FlowLog, 'Tags'> {
region: string;
Tags: TagMap;
}
declare const _default: ({ regions, config, }: {
regions: string;
config: Config;
}) => Promise<{
[key: string]: RawFlowLog[];
}>;
export default _default;