Interface HttpServiceDiscoveryIntegrationProps

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

@Generated(value="jsii-pacmak/1.101.0 (build b95fe5d)", date="2024-08-15T01:32:43.151Z") @Stability(Stable) public interface HttpServiceDiscoveryIntegrationProps extends software.amazon.jsii.JsiiSerializable, HttpPrivateIntegrationOptions
Properties to initialize HttpServiceDiscoveryIntegration.

Example:

 import software.amazon.awscdk.services.servicediscovery.*;
 import software.amazon.awscdk.aws_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();