Interface CfnEndpointConfig.PrefixAwareRoutingConfigProperty

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

@Stability(Stable) public static interface CfnEndpointConfig.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.services.sagemaker.*;
 PrefixAwareRoutingConfigProperty prefixAwareRoutingConfigProperty = PrefixAwareRoutingConfigProperty.builder()
         .concurrencyThreshold(123)
         .prefixLength(123)
         .build();
 

See Also: