Class: Aws::SageMaker::Types::ShadowModelVariantConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ShadowModelVariantConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
The name and sampling percentage of a shadow variant.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #sampling_percentage  ⇒ Integer 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The percentage of inference requests that Amazon SageMaker replicates from the production variant to the shadow variant.
 - 
  
    
      #shadow_model_variant_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the shadow variant.
 
Instance Attribute Details
#sampling_percentage ⇒ Integer
The percentage of inference requests that Amazon SageMaker replicates from the production variant to the shadow variant.
      43208 43209 43210 43211 43212 43213  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 43208 class ShadowModelVariantConfig < Struct.new( :shadow_model_variant_name, :sampling_percentage) SENSITIVE = [] include Aws::Structure end  | 
  
#shadow_model_variant_name ⇒ String
The name of the shadow variant.
      43208 43209 43210 43211 43212 43213  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 43208 class ShadowModelVariantConfig < Struct.new( :shadow_model_variant_name, :sampling_percentage) SENSITIVE = [] include Aws::Structure end  |