import { ResourceBase } from '../resource'; import { Value, List } from '../dataTypes'; export interface UserPoolIdentityProviderProperties { ProviderName: Value; UserPoolId: Value; AttributeMapping?: { [key: string]: any; }; ProviderDetails?: { [key: string]: any; }; ProviderType: Value; IdpIdentifiers?: List>; } export default class UserPoolIdentityProvider extends ResourceBase { constructor(properties: UserPoolIdentityProviderProperties); }