agent-claw: automated task changes
This commit is contained in:
23
cdk/node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts
generated
vendored
Normal file
23
cdk/node_modules/aws-cdk-lib/aws-cloudwatch/lib/alarm-action.d.ts
generated
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
import type { Construct } from 'constructs';
|
||||
import type { IAlarm } from './alarm-base';
|
||||
/**
|
||||
* Interface for objects that can be the targets of CloudWatch alarm actions
|
||||
*/
|
||||
export interface IAlarmAction {
|
||||
/**
|
||||
* Return the properties required to send alarm actions to this CloudWatch alarm.
|
||||
*
|
||||
* @param scope root Construct that allows creating new Constructs
|
||||
* @param alarm CloudWatch alarm that the action will target [disable-awslint:prefer-ref-interface]
|
||||
*/
|
||||
bind(scope: Construct, alarm: IAlarm): AlarmActionConfig;
|
||||
}
|
||||
/**
|
||||
* Properties for an alarm action
|
||||
*/
|
||||
export interface AlarmActionConfig {
|
||||
/**
|
||||
* Return the ARN that should be used for a CloudWatch Alarm action
|
||||
*/
|
||||
readonly alarmActionArn: string;
|
||||
}
|
||||
Reference in New Issue
Block a user