Interface ProductionVariantRoutingConfig.Builder
- All Superinterfaces:
Buildable,CopyableBuilder<ProductionVariantRoutingConfig.Builder,,ProductionVariantRoutingConfig> SdkBuilder<ProductionVariantRoutingConfig.Builder,,ProductionVariantRoutingConfig> SdkPojo
- Enclosing class:
ProductionVariantRoutingConfig
-
Method Summary
Modifier and TypeMethodDescriptionprefixAwareRoutingConfig(Consumer<PrefixAwareRoutingConfig.Builder> prefixAwareRoutingConfig) The configuration for prefix-aware routing.prefixAwareRoutingConfig(PrefixAwareRoutingConfig prefixAwareRoutingConfig) The configuration for prefix-aware routing.routingStrategy(String routingStrategy) Sets how the endpoint routes incoming traffic:routingStrategy(RoutingStrategy routingStrategy) Sets how the endpoint routes incoming traffic:Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copyMethods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, buildMethods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
Method Details
-
routingStrategy
Sets how the endpoint routes incoming traffic:
-
LEAST_OUTSTANDING_REQUESTS: The endpoint routes requests to the specific instances that have more capacity to process them. -
RANDOM: The endpoint routes each request to a randomly chosen instance. -
PREFIX_AWARE: The endpoint routes requests that share the same prompt prefix to the same instance. When the number of in-flight requests on the selected instance reaches the configured threshold, the endpoint routes the request to an instance with more available capacity.
- Parameters:
routingStrategy- Sets how the endpoint routes incoming traffic:-
LEAST_OUTSTANDING_REQUESTS: The endpoint routes requests to the specific instances that have more capacity to process them. -
RANDOM: The endpoint routes each request to a randomly chosen instance. -
PREFIX_AWARE: The endpoint routes requests that share the same prompt prefix to the same instance. When the number of in-flight requests on the selected instance reaches the configured threshold, the endpoint routes the request to an instance with more available capacity.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
routingStrategy
Sets how the endpoint routes incoming traffic:
-
LEAST_OUTSTANDING_REQUESTS: The endpoint routes requests to the specific instances that have more capacity to process them. -
RANDOM: The endpoint routes each request to a randomly chosen instance. -
PREFIX_AWARE: The endpoint routes requests that share the same prompt prefix to the same instance. When the number of in-flight requests on the selected instance reaches the configured threshold, the endpoint routes the request to an instance with more available capacity.
- Parameters:
routingStrategy- Sets how the endpoint routes incoming traffic:-
LEAST_OUTSTANDING_REQUESTS: The endpoint routes requests to the specific instances that have more capacity to process them. -
RANDOM: The endpoint routes each request to a randomly chosen instance. -
PREFIX_AWARE: The endpoint routes requests that share the same prompt prefix to the same instance. When the number of in-flight requests on the selected instance reaches the configured threshold, the endpoint routes the request to an instance with more available capacity.
-
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
-
prefixAwareRoutingConfig
ProductionVariantRoutingConfig.Builder prefixAwareRoutingConfig(PrefixAwareRoutingConfig prefixAwareRoutingConfig) The configuration for prefix-aware routing. Specify this parameter only when you set
RoutingStrategytoPREFIX_AWARE.- Parameters:
prefixAwareRoutingConfig- The configuration for prefix-aware routing. Specify this parameter only when you setRoutingStrategytoPREFIX_AWARE.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
prefixAwareRoutingConfig
default ProductionVariantRoutingConfig.Builder prefixAwareRoutingConfig(Consumer<PrefixAwareRoutingConfig.Builder> prefixAwareRoutingConfig) The configuration for prefix-aware routing. Specify this parameter only when you set
This is a convenience method that creates an instance of theRoutingStrategytoPREFIX_AWARE.PrefixAwareRoutingConfig.Builderavoiding the need to create one manually viaPrefixAwareRoutingConfig.builder().When the
Consumercompletes,SdkBuilder.build()is called immediately and its result is passed toprefixAwareRoutingConfig(PrefixAwareRoutingConfig).- Parameters:
prefixAwareRoutingConfig- a consumer that will call methods onPrefixAwareRoutingConfig.Builder- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-