agent-claw: automated task changes
This commit is contained in:
13
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts
generated
vendored
Normal file
13
cdk/node_modules/aws-cdk-lib/aws-lambda/lib/event-source.d.ts
generated
vendored
Normal file
@@ -0,0 +1,13 @@
|
||||
import type { IFunction } from './function-base';
|
||||
/**
|
||||
* An abstract class which represents an AWS Lambda event source.
|
||||
*/
|
||||
export interface IEventSource {
|
||||
/**
|
||||
* Called by `lambda.addEventSource` to allow the event source to bind to this
|
||||
* function.
|
||||
*
|
||||
* @param target That lambda function to bind to.
|
||||
*/
|
||||
bind(target: IFunction): void;
|
||||
}
|
||||
Reference in New Issue
Block a user