Class: Aws::SageMaker::Types::ProductionVariantRoutingConfig

Inherits:
Struct
  • Object
show all
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

Instance Attribute Details

#routing_strategyString

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.

Returns:

  • (String)


35561
35562
35563
35564
35565
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 35561

class ProductionVariantRoutingConfig < Struct.new(
  :routing_strategy)
  SENSITIVE = []
  include Aws::Structure
end