Class: Aws::SageMaker::Types::ExperimentConfig
- Inherits:
 - 
      Struct
      
        
- Object
 - Struct
 - Aws::SageMaker::Types::ExperimentConfig
 
 
- Includes:
 - Aws::Structure
 
- Defined in:
 - lib/aws-sdk-sagemaker/types.rb
 
Overview
Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:
- CreateProcessingJob][1
 
- CreateTrainingJob][2
 
- CreateTransformJob][3
 
[1]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateProcessingJob.html [2]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTrainingJob.html [3]: docs.aws.amazon.com/sagemaker/latest/APIReference/API_CreateTransformJob.html
Constant Summary collapse
- SENSITIVE =
 []
Instance Attribute Summary collapse
- 
  
    
      #experiment_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of an existing experiment to associate with the trial component.
 - 
  
    
      #run_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of the experiment run to associate with the trial component.
 - 
  
    
      #trial_component_display_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The display name for the trial component.
 - 
  
    
      #trial_name  ⇒ String 
    
    
  
  
  
  
    
    
  
  
  
  
  
  
    
The name of an existing trial to associate the trial component with.
 
Instance Attribute Details
#experiment_name ⇒ String
The name of an existing experiment to associate with the trial component.
      21357 21358 21359 21360 21361 21362 21363 21364  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21357 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name, :run_name) SENSITIVE = [] include Aws::Structure end  | 
  
#run_name ⇒ String
The name of the experiment run to associate with the trial component.
      21357 21358 21359 21360 21361 21362 21363 21364  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21357 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name, :run_name) SENSITIVE = [] include Aws::Structure end  | 
  
#trial_component_display_name ⇒ String
The display name for the trial component. If this key isn’t specified, the display name is the trial component name.
      21357 21358 21359 21360 21361 21362 21363 21364  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21357 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name, :run_name) SENSITIVE = [] include Aws::Structure end  | 
  
#trial_name ⇒ String
The name of an existing trial to associate the trial component with. If not specified, a new trial is created.
      21357 21358 21359 21360 21361 21362 21363 21364  | 
    
      # File 'lib/aws-sdk-sagemaker/types.rb', line 21357 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name, :run_name) SENSITIVE = [] include Aws::Structure end  |