Interface WebSocketLambdaIntegrationProps

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
WebSocketLambdaIntegrationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.98.0 (build 00b106d)", date="2024-05-08T21:35:02.262Z") @Stability(Stable) public interface WebSocketLambdaIntegrationProps extends software.amazon.jsii.JsiiSerializable
Props for Lambda type integration for a WebSocket Api.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.*;
 import software.amazon.awscdk.services.apigatewayv2.*;
 import software.amazon.awscdk.aws_apigatewayv2_integrations.*;
 WebSocketLambdaIntegrationProps webSocketLambdaIntegrationProps = WebSocketLambdaIntegrationProps.builder()
         .contentHandling(ContentHandling.CONVERT_TO_BINARY)
         .timeout(Duration.minutes(30))
         .build();
 
  • Method Details

    • getContentHandling

      @Stability(Stable) @Nullable default ContentHandling getContentHandling()
      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.

    • getTimeout

      @Stability(Stable) @Nullable default Duration getTimeout()
      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)

    • builder

      @Stability(Stable) static WebSocketLambdaIntegrationProps.Builder builder()
      Returns:
      a WebSocketLambdaIntegrationProps.Builder of WebSocketLambdaIntegrationProps