Class: Aws::SageMaker::Types::ShadowModeConfig

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

The configuration of ‘ShadowMode` inference experiment type, which specifies a production variant to take all the inference requests, and a shadow variant to which Amazon SageMaker replicates a percentage of the inference requests. For the shadow variant it also specifies the percentage of requests that Amazon SageMaker replicates.

Constant Summary collapse

SENSITIVE =
[]

Instance Attribute Summary collapse

Instance Attribute Details

#shadow_model_variantsArray<Types::ShadowModelVariantConfig>

List of shadow variant configurations.



38960
38961
38962
38963
38964
38965
# File 'lib/aws-sdk-sagemaker/types.rb', line 38960

class ShadowModeConfig < Struct.new(
  :source_model_variant_name,
  :shadow_model_variants)
  SENSITIVE = []
  include Aws::Structure
end

#source_model_variant_nameString

The name of the production variant, which takes all the inference requests.

Returns:

  • (String)


38960
38961
38962
38963
38964
38965
# File 'lib/aws-sdk-sagemaker/types.rb', line 38960

class ShadowModeConfig < Struct.new(
  :source_model_variant_name,
  :shadow_model_variants)
  SENSITIVE = []
  include Aws::Structure
end