Class: Aws::SageMaker::Types::ModelBiasAppSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelBiasAppSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Docker container image configuration object for the model bias job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #config_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
JSON formatted S3 file that defines bias parameters.
 - 
  
    
      #environment  ⇒ Hash<String,String> 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
Sets the environment variables in the Docker container.
 - 
  
    
      #image_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The container image to be run by the model bias job.
 
Instance Attribute Details
#config_uri ⇒ String
JSON formatted S3 file that defines bias parameters. For more information on this JSON configuration file, see [Configure bias parameters].
[1]: docs.aws.amazon.com/sagemaker/latest/dg/clarify-config-json-monitor-bias-parameters.html
      33716 33717 33718 33719 33720 33721 33722  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33716 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  | 
  
#environment ⇒ Hash<String,String>
Sets the environment variables in the Docker container.
      33716 33717 33718 33719 33720 33721 33722  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33716 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  | 
  
#image_uri ⇒ String
The container image to be run by the model bias job.
      33716 33717 33718 33719 33720 33721 33722  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 33716 class ModelBiasAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  |