UNPKG

@csermet/multiprovider

Version:

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

16 lines (15 loc) 548 B
import { IdentityPool, GetIdentityPoolRolesResponse } from 'aws-sdk/clients/cognitoidentity'; import { Config } from 'aws-sdk/lib/config'; import { TagMap } from '../../types'; export interface RawAwsCognitoIdentityPool extends Omit<IdentityPool, 'IdentityPoolTags'> { identityPoolRoles: GetIdentityPoolRolesResponse; region: string; Tags: TagMap; } declare const _default: ({ regions, config, }: { regions: string; config: Config; }) => Promise<{ [region: string]: RawAwsCognitoIdentityPool[]; }>; export default _default;