UNPKG

@aws-cdk/aws-redshift-alpha

Version:

The CDK Construct Library for AWS::Redshift

10 lines (9 loc) 367 B
import type * as AWSLambda from 'aws-lambda'; import { ClusterProps } from './types'; import { UserHandlerProps } from '../handler-props'; export declare function handler(props: UserHandlerProps & ClusterProps, event: AWSLambda.CloudFormationCustomResourceEvent): Promise<{ PhysicalResourceId: string; Data: { username: string; }; } | undefined>;