Interface HttpNlbIntegrationProps
- All Superinterfaces:
- HttpPrivateIntegrationOptions,- software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
- HttpNlbIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.116.0 (build 0eddcff)",
           date="2025-10-29T11:15:31.814Z")
@Stability(Stable)
public interface HttpNlbIntegrationProps
extends software.amazon.jsii.JsiiSerializable, HttpPrivateIntegrationOptions
Properties to initialize 
HttpNlbIntegration.
 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;
 VpcLink vpcLink;
 HttpNlbIntegrationProps httpNlbIntegrationProps = HttpNlbIntegrationProps.builder()
         .method(HttpMethod.ANY)
         .parameterMapping(parameterMapping)
         .secureServerName("secureServerName")
         .timeout(Duration.minutes(30))
         .vpcLink(vpcLink)
         .build();
 - 
Nested Class SummaryNested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpNlbIntegrationPropsstatic final classAn implementation forHttpNlbIntegrationProps
- 
Method SummaryStatic MethodsMethods inherited from interface software.amazon.awscdk.aws_apigatewayv2_integrations.HttpPrivateIntegrationOptionsgetMethod, getParameterMapping, getSecureServerName, getTimeout, getVpcLinkMethods inherited from interface software.amazon.jsii.JsiiSerializable$jsii$toJson
- 
Method Details- 
builder- Returns:
- a HttpNlbIntegrationProps.BuilderofHttpNlbIntegrationProps
 
 
-