Class: Aws::SageMaker::Types::ProductionVariantRoutingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariantRoutingConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Settings that control how the endpoint routes incoming traffic to the instances that the endpoint hosts.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#routing_strategy ⇒ String
Sets how the endpoint routes incoming traffic:.
Instance Attribute Details
#routing_strategy ⇒ String
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.
37582 37583 37584 37585 37586 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 37582 class ProductionVariantRoutingConfig < Struct.new( :routing_strategy) SENSITIVE = [] include Aws::Structure end |