UNPKG

@csermet/multiprovider

Version:

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

17 lines (16 loc) 416 B
import { Config } from 'aws-sdk/lib/config'; import GLUE from 'aws-sdk/clients/glue'; export interface RawAwsGlueRegistry extends GLUE.RegistryListItem { region: string; schemas?: GLUE.SchemaListItem[]; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsGlueRegistry[]; }>; /** * GlueRegistry */ export default _default;