UNPKG

the-ldk

Version:

Welcome to the LDK! A collection of custom AWS CDK constructs to help you build serverless applications faster.

9 lines (8 loc) 354 B
import { Stack } from 'aws-cdk-lib'; import { Construct } from 'constructs'; import { IEventBus } from 'aws-cdk-lib/aws-events'; import { LDKEventBusProps } from '../../../types/LDKEventBus.type'; export declare class LDKEventBus extends Construct { readonly eventBus: IEventBus; constructor(scope: Stack, id: string, props: LDKEventBusProps); }