@Generated(value="jsii-pacmak/1.72.0 (build 4b8828b)", date="2022-12-14T20:30:54.624Z") @Stability(value=Experimental) public interface HttpServiceDiscoveryIntegrationProps extends software.amazon.jsii.JsiiSerializable, HttpPrivateIntegrationOptions
Example:
import software.amazon.awscdk.services.servicediscovery.*;
import software.amazon.awscdk.services.apigatewayv2.integrations.HttpServiceDiscoveryIntegration;
Vpc vpc = new Vpc(this, "VPC");
VpcLink vpcLink = VpcLink.Builder.create(this, "VpcLink").vpc(vpc).build();
PrivateDnsNamespace namespace = PrivateDnsNamespace.Builder.create(this, "Namespace")
.name("boobar.com")
.vpc(vpc)
.build();
Service service = namespace.createService("Service");
HttpApi httpEndpoint = HttpApi.Builder.create(this, "HttpProxyPrivateApi")
.defaultIntegration(HttpServiceDiscoveryIntegration.Builder.create("DefaultIntegration", service)
.vpcLink(vpcLink)
.build())
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
HttpServiceDiscoveryIntegrationProps.Builder
A builder for
HttpServiceDiscoveryIntegrationProps |
static class |
HttpServiceDiscoveryIntegrationProps.Jsii$Proxy
An implementation for
HttpServiceDiscoveryIntegrationProps |
| Modifier and Type | Method and Description |
|---|---|
static HttpServiceDiscoveryIntegrationProps.Builder |
builder() |
getMethod, getParameterMapping, getSecureServerName, getVpcLink@Stability(value=Experimental) static HttpServiceDiscoveryIntegrationProps.Builder builder()
builder in interface HttpPrivateIntegrationOptionsHttpServiceDiscoveryIntegrationProps.Builder of HttpServiceDiscoveryIntegrationPropsCopyright © 2022. All rights reserved.