Interface HttpAlbIntegrationProps
- All Superinterfaces:
HttpPrivateIntegrationOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpAlbIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:04.446Z")
@Stability(Stable)
public interface HttpAlbIntegrationProps
extends software.amazon.jsii.JsiiSerializable, HttpPrivateIntegrationOptions
Properties to initialize
HttpAlbIntegration.
Example:
import software.amazon.awscdk.aws_apigatewayv2_integrations.HttpAlbIntegration;
ApplicationLoadBalancer lb;
ApplicationListener listener = lb.addListener("listener", BaseApplicationListenerProps.builder().port(80).build());
listener.addTargets("target", AddApplicationTargetsProps.builder()
.port(80)
.build());
HttpApi httpEndpoint = HttpApi.Builder.create(this, "HttpProxyPrivateApi")
.defaultIntegration(HttpAlbIntegration.Builder.create("DefaultIntegration", listener)
.parameterMapping(new ParameterMapping().custom("myKey", "myValue"))
.build())
.build();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpAlbIntegrationPropsstatic final classAn implementation forHttpAlbIntegrationProps -
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
HttpAlbIntegrationProps.BuilderofHttpAlbIntegrationProps
-