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

Inherits:
Struct
  • Object
show all
Defined in:
gems/aws-sdk-sagemaker/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.



38937
38938
38939
38940
38941
38942
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38937

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)


38937
38938
38939
38940
38941
38942
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 38937

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