Interface HttpLambdaIntegrationProps

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

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:52.743Z") @Stability(Stable) public interface HttpLambdaIntegrationProps extends software.amazon.jsii.JsiiSerializable
Lambda Proxy integration properties.

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.*;
 ParameterMapping parameterMapping;
 PayloadFormatVersion payloadFormatVersion;
 HttpLambdaIntegrationProps httpLambdaIntegrationProps = HttpLambdaIntegrationProps.builder()
         .parameterMapping(parameterMapping)
         .payloadFormatVersion(payloadFormatVersion)
         .timeout(Duration.minutes(30))
         .build();