Interface HttpNlbIntegrationProps
- All Superinterfaces:
HttpPrivateIntegrationOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpNlbIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:04.448Z")
@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 Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpNlbIntegrationPropsstatic final classAn implementation forHttpNlbIntegrationProps -
Method Summary
Static MethodsMethods inherited from interface software.amazon.awscdk.aws_apigatewayv2_integrations.HttpPrivateIntegrationOptions
getMethod, getParameterMapping, getSecureServerName, getTimeout, getVpcLinkMethods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
HttpNlbIntegrationProps.BuilderofHttpNlbIntegrationProps
-