Interface CfnEndpointConfigPropsMixin.PrefixAwareRoutingConfigProperty

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

@Stability(Stable) public static interface CfnEndpointConfigPropsMixin.PrefixAwareRoutingConfigProperty extends software.amazon.jsii.JsiiSerializable
The configuration for prefix-aware routing on a SageMaker real-time inference endpoint.

Specify PrefixLength and ConcurrencyThreshold to control routing behavior.

Example:

 // The code below shows an example of how to instantiate this type.
 // The values are placeholders you should change.
 import software.amazon.awscdk.cfnpropertymixins.services.sagemaker.*;
 PrefixAwareRoutingConfigProperty prefixAwareRoutingConfigProperty = PrefixAwareRoutingConfigProperty.builder()
         .concurrencyThreshold(123)
         .prefixLength(123)
         .build();
 

See Also: