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

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

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)


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