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:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnEndpointConfig.RoutingConfigPropertystatic final classAn implementation forCfnEndpointConfig.RoutingConfigProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getPrefixAwareRoutingConfig
The configuration for prefix-aware routing on a SageMaker real-time inference endpoint.Specify PrefixLength and ConcurrencyThreshold to control routing behavior.
Returns union: either
IResolvableorCfnEndpointConfig.PrefixAwareRoutingConfigProperty- See Also:
-
getRoutingStrategy
Sets how the endpoint routes incoming traffic.- See Also:
-
builder
-