Class: Aws::SageMaker::Types::OptimizationConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::OptimizationConfig
 
 
- Includes:
 - Aws::Structure, Aws::Structure::Union
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
OptimizationConfig is a union - when making an API calls you must set exactly one of the members.
OptimizationConfig is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of OptimizationConfig corresponding to the set member.
Settings for an optimization technique that you apply with a model optimization job.
Direct Known Subclasses
Defined Under Namespace
Classes: ModelCompilationConfig, ModelQuantizationConfig, Unknown
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #model_compilation_config  ⇒ Types::ModelCompilationConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Settings for the model compilation technique that’s applied by a model optimization job.
 - 
  
    
      #model_quantization_config  ⇒ Types::ModelQuantizationConfig 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Settings for the model quantization technique that’s applied by a model optimization job.
 - 
  
    
      #unknown  ⇒ Object 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Returns the value of attribute unknown.
 
Instance Attribute Details
#model_compilation_config ⇒ Types::ModelCompilationConfig
Settings for the model compilation technique that’s applied by a model optimization job.
      35203 35204 35205 35206 35207 35208 35209 35210 35211 35212 35213 35214  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35203 class OptimizationConfig < Struct.new( :model_quantization_config, :model_compilation_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ModelQuantizationConfig < OptimizationConfig; end class ModelCompilationConfig < OptimizationConfig; end class Unknown < OptimizationConfig; end end  | 
  
#model_quantization_config ⇒ Types::ModelQuantizationConfig
Settings for the model quantization technique that’s applied by a model optimization job.
      35203 35204 35205 35206 35207 35208 35209 35210 35211 35212 35213 35214  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35203 class OptimizationConfig < Struct.new( :model_quantization_config, :model_compilation_config, :unknown) SENSITIVE = [] include Aws::Structure include Aws::Structure::Union class ModelQuantizationConfig < OptimizationConfig; end class ModelCompilationConfig < OptimizationConfig; end class Unknown < OptimizationConfig; end end  | 
  
#unknown ⇒ Object
Returns the value of attribute unknown
      35203 35204 35205  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 35203 def unknown @unknown end  |