UNPKG

@csermet/multiprovider

Version:

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

17 lines (16 loc) 537 B
import APIGW, { Api } from 'aws-sdk/clients/apigatewayv2'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; export interface RawAwsApiGatewayHttpApi extends Omit<Api, 'Tags'> { accountId: string; Tags: TagMap; region: string; } export declare const getHttpApisForRegion: (apiGw: APIGW) => Promise<Api[]>; declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [property: string]: RawAwsApiGatewayHttpApi[]; }>; export default _default;