UNPKG

@csermet/multiprovider

Version:

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

18 lines (17 loc) 487 B
import { StackSet } from 'aws-sdk/clients/cloudformation'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; /** * Cloud Formation Stack Set */ export interface RawAwsCloudFormationStackSet extends Omit<StackSet, 'Tags'> { Tags: TagMap; region: string; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsCloudFormationStackSet[]; }>; export default _default;