Class: Aws::SageMaker::Types::ShadowModeConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ShadowModeConfig
 
 
- 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
- 
  
    
      #shadow_model_variants  ⇒ Array<Types::ShadowModelVariantConfig> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
List of shadow variant configurations.
 - 
  
    
      #source_model_variant_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the production variant, which takes all the inference requests.
 
Instance Attribute Details
#shadow_model_variants ⇒ Array<Types::ShadowModelVariantConfig>
List of shadow variant configurations.
      42916 42917 42918 42919 42920 42921  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42916 class ShadowModeConfig < Struct.new( :source_model_variant_name, :shadow_model_variants) SENSITIVE = [] include Aws::Structure end  | 
  
#source_model_variant_name ⇒ String
The name of the production variant, which takes all the inference requests.
      42916 42917 42918 42919 42920 42921  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 42916 class ShadowModeConfig < Struct.new( :source_model_variant_name, :shadow_model_variants) SENSITIVE = [] include Aws::Structure end  |