UNPKG

cdk-eventbridge-partner-processors

Version:

[![View on Construct Hub](https://constructs.dev/badge?package=cdk-eventbridge-partner-processors)](https://constructs.dev/packages/cdk-eventbridge-partner-processors)

19 lines (18 loc) 512 B
import { IFunction } from 'aws-cdk-lib/aws-lambda'; import { Construct } from 'constructs'; export interface InvocationAlarmProps { /** * Lambda Invocation threshold. */ readonly threshold: number; /** * The function to monitor. */ readonly eventFunction: IFunction; } /** * Cloudwatch Alarm used across this construct library. */ export declare class InvocationAlarm extends Construct { constructor(scope: Construct, id: string, props: InvocationAlarmProps); }