@csermet/multiprovider
Version:
cloud-graph provider plugin for AWS used to fetch AWS cloud data.
15 lines (14 loc) • 468 B
TypeScript
import { UserPoolType } from 'aws-sdk/clients/cognitoidentityserviceprovider';
import { Config } from 'aws-sdk/lib/config';
import { TagMap } from '../../types';
export interface RawAwsCognitoUserPool extends Omit<UserPoolType, 'UserPoolTags'> {
region: string;
Tags: TagMap;
}
declare const _default: ({ regions, config, }: {
regions: string;
config: Config;
}) => Promise<{
[region: string]: RawAwsCognitoUserPool[];
}>;
export default _default;