agent-claw: automated task changes
This commit is contained in:
20
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts
generated
vendored
Normal file
20
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/dlq.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { IEventSourceMapping } from './event-source-mapping';
|
||||
import type { IFunction } from './function-base';
|
||||
/**
|
||||
* A destination configuration
|
||||
*/
|
||||
export interface DlqDestinationConfig {
|
||||
/**
|
||||
* The Amazon Resource Name (ARN) of the destination resource
|
||||
*/
|
||||
readonly destination: string;
|
||||
}
|
||||
/**
|
||||
* A DLQ for an event source
|
||||
*/
|
||||
export interface IEventSourceDlq {
|
||||
/**
|
||||
* Returns the DLQ destination config of the DLQ
|
||||
*/
|
||||
bind(target: IEventSourceMapping, targetHandler: IFunction): DlqDestinationConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user