Interface HttpServiceDiscoveryIntegrationProps
- All Superinterfaces:
HttpPrivateIntegrationOptions,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpServiceDiscoveryIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.121.0 (build d7af9b9)",
date="2025-12-18T18:20:04.450Z")
@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();
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forHttpServiceDiscoveryIntegrationPropsstatic final classAn implementation forHttpServiceDiscoveryIntegrationProps -
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
-