@Stability(value=Stable)
public static interface CfnService.UrlEndpointInputProperty
extends software.amazon.jsii.JsiiSerializable
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.refactorspaces.*;
UrlEndpointInputProperty urlEndpointInputProperty = UrlEndpointInputProperty.builder()
.url("url")
// the properties below are optional
.healthUrl("healthUrl")
.build();
| Modifier and Type | Interface and Description |
|---|---|
static class |
CfnService.UrlEndpointInputProperty.Builder
A builder for
CfnService.UrlEndpointInputProperty |
static class |
CfnService.UrlEndpointInputProperty.Jsii$Proxy
An implementation for
CfnService.UrlEndpointInputProperty |
| Modifier and Type | Method and Description |
|---|---|
static CfnService.UrlEndpointInputProperty.Builder |
builder() |
default String |
getHealthUrl()
The health check URL of the URL endpoint type.
|
String |
getUrl()
The URL to route traffic to.
|
@Stability(value=Stable) @NotNull String getUrl()
The URL must be an rfc3986-formatted URL . If the host is a domain name, the name must be resolvable over the public internet. If the scheme is https , the top level domain of the host must be listed in the IANA root zone database .
@Stability(value=Stable) @Nullable default String getHealthUrl()
If the URL is a public endpoint, the HealthUrl must also be a public endpoint. If the URL is a private endpoint inside a virtual private cloud (VPC), the health URL must also be a private endpoint, and the host must be the same as the URL.
@Stability(value=Stable) static CfnService.UrlEndpointInputProperty.Builder builder()
Copyright © 2023. All rights reserved.