Class: Aws::SageMaker::Types::ModelExplainabilityAppSpecification
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ModelExplainabilityAppSpecification
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Docker container image configuration object for the model explainability job.
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #config_uri  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
JSON formatted Amazon S3 file that defines explainability 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 explainability job.
 
Instance Attribute Details
#config_uri ⇒ String
JSON formatted Amazon S3 file that defines explainability parameters. For more information on this JSON configuration file, see [Configure model explainability parameters].
      34241 34242 34243 34244 34245 34246 34247  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34241 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  | 
  
#environment ⇒ Hash<String,String>
Sets the environment variables in the Docker container.
      34241 34242 34243 34244 34245 34246 34247  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34241 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  | 
  
#image_uri ⇒ String
The container image to be run by the model explainability job.
      34241 34242 34243 34244 34245 34246 34247  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 34241 class ModelExplainabilityAppSpecification < Struct.new( :image_uri, :config_uri, :environment) SENSITIVE = [] include Aws::Structure end  |