@cpmech/az-cdk
Version:
AmaZon AWS-CDK tools
14 lines (13 loc) • 470 B
TypeScript
import { Construct } from '@aws-cdk/core';
import { Runtime } from '@aws-cdk/aws-lambda';
export interface ICognitoEnableProvidersProps {
userPoolId: string;
userPoolClientId: string;
providers: string[];
callbackUrls?: string[];
logoutUrls?: string[];
runtime?: Runtime;
}
export declare class CognitoEnableProvidersConstruct extends Construct {
constructor(scope: Construct, id: string, props: ICognitoEnableProvidersProps);
}