Interface HttpAlbIntegrationProps

All Superinterfaces:
HttpPrivateIntegrationOptions, software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
HttpAlbIntegrationProps.Jsii$Proxy

@Generated(value="jsii-pacmak/1.103.1 (build bef2dea)", date="2024-10-11T15:55:52.742Z") @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();