@aws-cdk/aws-redshift-alpha
Version:
The CDK Construct Library for AWS::Redshift
10 lines (9 loc) • 362 B
TypeScript
import * 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>;