Interface HttpAlbIntegrationProps
- All Superinterfaces:
HttpPrivateIntegrationOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpAlbIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.84.0 (build 5404dcf)",
date="2023-06-19T16:30:45.679Z")
@Stability(Experimental)
public interface HttpAlbIntegrationProps
extends software.amazon.jsii.JsiiSerializable, HttpPrivateIntegrationOptions
(experimental) Properties to initialize
HttpAlbIntegration
.
Example:
import software.amazon.awscdk.services.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().appendHeader("header2", MappingValue.requestHeader("header1")).removeHeader("header1")) .build()) .build();
-
Nested Class Summary
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHttpAlbIntegrationProps
static final class
An implementation forHttpAlbIntegrationProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.services.apigatewayv2.integrations.HttpPrivateIntegrationOptions
getMethod, getParameterMapping, getSecureServerName, getVpcLink
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
- Returns:
- a
HttpAlbIntegrationProps.Builder
ofHttpAlbIntegrationProps
-