Interface CfnService.UrlEndpointInputProperty

All Superinterfaces:
software.amazon.jsii.JsiiSerializable
All Known Implementing Classes:
CfnService.UrlEndpointInputProperty.Jsii$Proxy
Enclosing class:
CfnService

@Stability(Stable) public static interface CfnService.UrlEndpointInputProperty extends software.amazon.jsii.JsiiSerializable
The configuration for the URL endpoint type.

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();