@rayova/cdk-cognito-secret
Version:
Export Cognito client secrets to Secrets Manager
14 lines (13 loc) • 472 B
TypeScript
import * as lambda from 'aws-cdk-lib/aws-lambda';
import { Construct } from 'constructs';
/**
* Props for UserPoolClientSecretFunction
*/
export interface UserPoolClientSecretFunctionProps extends lambda.FunctionOptions {
}
/**
* An AWS Lambda function which executes src/user-pool-client-secret.
*/
export declare class UserPoolClientSecretFunction extends lambda.Function {
constructor(scope: Construct, id: string, props?: UserPoolClientSecretFunctionProps);
}