@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
19 lines (18 loc) • 460 B
TypeScript
import { NetworkInterface } from 'aws-sdk/clients/ec2';
import { Config } from 'aws-sdk/lib/config';
/**
* Network Interface
*/
export interface RawNetworkInterface extends Omit<NetworkInterface, 'TagSet'> {
region: string;
Tags?: {
[key: string]: any;
};
}
declare const _default: ({ regions, config, }: {
regions: string;
config: Config;
}) => Promise<{
[region: string]: RawNetworkInterface[];
}>;
export default _default;