UNPKG

@csermet/multiprovider

Version:

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

18 lines (17 loc) 509 B
import { Config } from 'aws-sdk'; import { Environment } from 'aws-sdk/clients/cloud9'; import { TagMap } from '../../types'; export interface RawAwsCloud9Environment extends Omit<Environment, 'arn' | 'ownerArn' | 'type'> { arn?: string; ownerArn?: string; region: string; Tags?: TagMap; type?: string; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsCloud9Environment[]; }>; export default _default;