Class: Aws::SageMaker::Types::ProductionVariantRoutingConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ProductionVariantRoutingConfig
- Includes:
- Aws::Structure
- Defined in:
- 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.
37555 37556 37557 37558 37559 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 37555 class ProductionVariantRoutingConfig < Struct.new( :routing_strategy) SENSITIVE = [] include Aws::Structure end |