@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
23 lines (22 loc) • 537 B
TypeScript
import { ServiceConnection } from '@cloudgraph/sdk';
import { StackSet } from 'aws-sdk/clients/cloudformation';
import { TagMap } from '../../types';
declare const _default: ({ service: cfStackSet, data, region, }: {
data: {
name: string;
data: {
[property: string]: any[];
};
}[];
service: StackSet & {
region: string;
Tags: TagMap;
};
region: string;
}) => {
[key: string]: ServiceConnection[];
};
/**
* Cloud Formation StackSet
*/
export default _default;