Interface HttpServiceDiscoveryIntegrationProps
- All Superinterfaces:
HttpPrivateIntegrationOptions
,software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
HttpServiceDiscoveryIntegrationProps.Jsii$Proxy
@Generated(value="jsii-pacmak/1.104.0 (build e79254c)",
date="2024-11-06T23:25:03.760Z")
@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
Modifier and TypeInterfaceDescriptionstatic final class
A builder forHttpServiceDiscoveryIntegrationProps
static final class
An implementation forHttpServiceDiscoveryIntegrationProps
-
Method Summary
Methods inherited from interface software.amazon.awscdk.aws_apigatewayv2_integrations.HttpPrivateIntegrationOptions
getMethod, getParameterMapping, getSecureServerName, getTimeout, getVpcLink
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
builder
-