UNPKG

@cdklabs/cdk-amazonmq

Version:
9 lines (8 loc) 403 B
import * as lambda from "aws-cdk-lib/aws-lambda"; import { Construct } from "constructs"; export interface RabbitMqCustomResourceSingletonFunctionProps extends lambda.FunctionOptions { uuid: string; } export declare class RabbitMqCustomResourceSingletonFunction extends lambda.SingletonFunction { constructor(scope: Construct, id: string, props: RabbitMqCustomResourceSingletonFunctionProps); }