Class: Aws::SageMaker::Types::ExperimentConfig
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::ExperimentConfig
- Defined in:
- gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass ExperimentConfig data as a hash:
{
experiment_name: "ExperimentEntityName",
trial_name: "ExperimentEntityName",
trial_component_display_name: "ExperimentEntityName",
}
Associates a SageMaker job as a trial component with an experiment and trial. Specified when you call the following APIs:
CreateProcessingJob
CreateTrainingJob
CreateTransformJob
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#experiment_name ⇒ String
The name of an existing experiment to associate the trial component with.
-
#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 the trial component with.
15481 15482 15483 15484 15485 15486 15487 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15481 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_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.
15481 15482 15483 15484 15485 15486 15487 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15481 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_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.
15481 15482 15483 15484 15485 15486 15487 |
# File 'gems/aws-sdk-sagemaker/lib/aws-sdk-sagemaker/types.rb', line 15481 class ExperimentConfig < Struct.new( :experiment_name, :trial_name, :trial_component_display_name) SENSITIVE = [] include Aws::Structure end |