agent-claw: automated task changes
This commit is contained in:
24
cdk/node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/dynamodb.d.ts
generated
vendored
Normal file
24
cdk/node_modules/aws-cdk-lib/aws-lambda-event-sources/lib/dynamodb.d.ts
generated
vendored
Normal file
@@ -0,0 +1,24 @@
|
||||
import type { StreamEventSourceProps } from './stream';
|
||||
import { StreamEventSource } from './stream';
|
||||
import type * as dynamodb from '../../aws-dynamodb';
|
||||
import type * as lambda from '../../aws-lambda';
|
||||
export interface DynamoEventSourceProps extends StreamEventSourceProps {
|
||||
}
|
||||
/**
|
||||
* Use an Amazon DynamoDB stream as an event source for AWS Lambda.
|
||||
*/
|
||||
export declare class DynamoEventSource extends StreamEventSource {
|
||||
private readonly table;
|
||||
private _eventSourceMappingId?;
|
||||
private _eventSourceMappingArn?;
|
||||
constructor(table: dynamodb.ITable, props: DynamoEventSourceProps);
|
||||
bind(target: lambda.IFunction): void;
|
||||
/**
|
||||
* The identifier for this EventSourceMapping
|
||||
*/
|
||||
get eventSourceMappingId(): string;
|
||||
/**
|
||||
* The ARN for this EventSourceMapping
|
||||
*/
|
||||
get eventSourceMappingArn(): string;
|
||||
}
|
||||
Reference in New Issue
Block a user