@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-14T20:30:54.618Z") @Stability(value=Experimental) public interface HttpLambdaIntegrationProps extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.apigatewayv2.*;
import software.amazon.awscdk.services.apigatewayv2.integrations.*;
ParameterMapping parameterMapping;
PayloadFormatVersion payloadFormatVersion;
HttpLambdaIntegrationProps httpLambdaIntegrationProps = HttpLambdaIntegrationProps.builder()
.parameterMapping(parameterMapping)
.payloadFormatVersion(payloadFormatVersion)
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpLambdaIntegrationProps.Builder
A builder for
HttpLambdaIntegrationProps |
static class |
HttpLambdaIntegrationProps.Jsii$Proxy
An implementation for
HttpLambdaIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static HttpLambdaIntegrationProps.Builder |
builder() |
default ParameterMapping |
getParameterMapping()
(experimental) Specifies how to transform HTTP requests before sending them to the backend.
|
default PayloadFormatVersion |
getPayloadFormatVersion()
(experimental) Version of the payload sent to the lambda handler.
|
@Stability(value=Experimental) @Nullable default ParameterMapping getParameterMapping()
Default: undefined requests are sent to the backend unmodified
@Stability(value=Experimental) @Nullable default PayloadFormatVersion getPayloadFormatVersion()
Default: PayloadFormatVersion.VERSION_2_0
@Stability(value=Experimental) static HttpLambdaIntegrationProps.Builder builder()
HttpLambdaIntegrationProps.Builder of HttpLambdaIntegrationPropsCopyright © 2022. All rights reserved.