agent-claw: automated task changes
This commit is contained in:
20
cdk/node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/lambda.d.ts
generated
vendored
Normal file
20
cdk/node_modules/aws-cdk-lib/aws-sns-subscriptions/lib/lambda.d.ts
generated
vendored
Normal file
@@ -0,0 +1,20 @@
|
||||
import type { SubscriptionProps } from './subscription';
|
||||
import type * as lambda from '../../aws-lambda';
|
||||
import * as sns from '../../aws-sns';
|
||||
/**
|
||||
* Properties for a Lambda subscription
|
||||
*/
|
||||
export interface LambdaSubscriptionProps extends SubscriptionProps {
|
||||
}
|
||||
/**
|
||||
* Use a Lambda function as a subscription target
|
||||
*/
|
||||
export declare class LambdaSubscription implements sns.ITopicSubscription {
|
||||
private readonly fn;
|
||||
private readonly props;
|
||||
constructor(fn: lambda.IFunction, props?: LambdaSubscriptionProps);
|
||||
/**
|
||||
* Returns a configuration for a Lambda function to subscribe to an SNS topic
|
||||
*/
|
||||
bind(topic: sns.ITopic): sns.TopicSubscriptionConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user