@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
19 lines (18 loc) • 422 B
TypeScript
import { Logger } from '@cloudgraph/sdk';
export interface Account {
profile: string;
roleArn: string | undefined;
externalId: string | undefined;
accessKeyId?: string;
secretAccessKey?: string;
}
export interface rawDataInterface {
className: string;
name: string;
accountId?: string;
data: any;
}
export default class BaseService {
constructor(config: any);
logger: Logger;
}