UNPKG

@csermet/multiprovider

Version:

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

13 lines (12 loc) 370 B
import { Config } from 'aws-sdk'; import { MountTargetDescription } from 'aws-sdk/clients/efs'; export interface RawAwsEfsMountTarget extends MountTargetDescription { region: string; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsEfsMountTarget[]; }>; export default _default;