Interface CfnEndpointConfig.RoutingConfigProperty

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

@Stability(Stable) public static interface CfnEndpointConfig.RoutingConfigProperty extends software.amazon.jsii.JsiiSerializable
Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.

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.sagemaker.*;
 RoutingConfigProperty routingConfigProperty = RoutingConfigProperty.builder()
         .prefixAwareRoutingConfig(PrefixAwareRoutingConfigProperty.builder()
                 .concurrencyThreshold(123)
                 .prefixLength(123)
                 .build())
         .routingStrategy("routingStrategy")
         .build();
 

See Also: