UNPKG

@csermet/multiprovider

Version:

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

16 lines (15 loc) 351 B
import { Config } from 'aws-sdk/lib/config'; import GLUE from 'aws-sdk/clients/glue'; export interface RawAwsGlueJob extends GLUE.Job { region: string; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsGlueJob[]; }>; /** * GlueJob */ export default _default;