agent-claw: automated task changes
This commit is contained in:
38
cdk/node_modules/aws-cdk-lib/aws-apigatewayv2-integrations/lib/websocket/lambda.d.ts
generated
vendored
Normal file
38
cdk/node_modules/aws-cdk-lib/aws-apigatewayv2-integrations/lib/websocket/lambda.d.ts
generated
vendored
Normal file
@@ -0,0 +1,38 @@
|
||||
import type { WebSocketRouteIntegrationBindOptions, WebSocketRouteIntegrationConfig, ContentHandling } from '../../../aws-apigatewayv2';
|
||||
import { WebSocketRouteIntegration } from '../../../aws-apigatewayv2';
|
||||
import type { IFunction } from '../../../aws-lambda';
|
||||
import type { Duration } from '../../../core';
|
||||
/**
|
||||
* Props for Lambda type integration for a WebSocket Api.
|
||||
*/
|
||||
export interface WebSocketLambdaIntegrationProps {
|
||||
/**
|
||||
* The maximum amount of time an integration will run before it returns without a response.
|
||||
* Must be between 50 milliseconds and 29 seconds.
|
||||
*
|
||||
* @default Duration.seconds(29)
|
||||
*/
|
||||
readonly timeout?: Duration;
|
||||
/**
|
||||
* Specifies how to handle response payload content type conversions.
|
||||
*
|
||||
* @default - The response payload will be passed through from the integration response to
|
||||
* the route response or method response without modification.
|
||||
*/
|
||||
readonly contentHandling?: ContentHandling;
|
||||
}
|
||||
/**
|
||||
* Lambda WebSocket Integration
|
||||
*/
|
||||
export declare class WebSocketLambdaIntegration extends WebSocketRouteIntegration {
|
||||
private readonly handler;
|
||||
private readonly props;
|
||||
private readonly _id;
|
||||
/**
|
||||
* @param id id of the underlying integration construct
|
||||
* @param handler the Lambda function handler
|
||||
* @param props properties to configure the integration
|
||||
*/
|
||||
constructor(id: string, handler: IFunction, props?: WebSocketLambdaIntegrationProps);
|
||||
bind(options: WebSocketRouteIntegrationBindOptions): WebSocketRouteIntegrationConfig;
|
||||
}
|
||||
Reference in New Issue
Block a user