@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
18 lines (17 loc) • 460 B
TypeScript
import { Config } from 'aws-sdk/lib/config';
import GUARDDUTY from 'aws-sdk/clients/guardduty';
export interface RawAwsGuardDutyDetector extends GUARDDUTY.GetDetectorResponse {
id: string;
region: string;
members: GUARDDUTY.Members;
}
declare const _default: ({ regions, config, }: {
regions: string;
config: Config;
}) => Promise<{
[region: string]: RawAwsGuardDutyDetector[];
}>;
/**
* GuardDutyDetector
*/
export default _default;