cdk-eventbridge-partner-processors
Version:
[](https://constructs.dev/packages/cdk-eventbridge-partner-processors)
19 lines (18 loc) • 512 B
TypeScript
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);
}