Class: Aws::SageMaker::Types::UpdateTrialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::UpdateTrialRequest
- Includes:
- Aws::Structure
- Defined in:
- lib/aws-sdk-sagemaker/types.rb
Overview
Note:
When making an API call, you may pass UpdateTrialRequest data as a hash:
{
trial_name: "ExperimentEntityName", # required
display_name: "ExperimentEntityName",
}
Instance Attribute Summary collapse
-
#display_name ⇒ String
The name of the trial as displayed.
-
#trial_name ⇒ String
The name of the trial to update.
Instance Attribute Details
#display_name ⇒ String
The name of the trial as displayed. The name doesn’t need to be unique. If ‘DisplayName` isn’t specified, ‘TrialName` is displayed.
20315 20316 20317 20318 20319 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20315 class UpdateTrialRequest < Struct.new( :trial_name, :display_name) include Aws::Structure end |
#trial_name ⇒ String
The name of the trial to update.
20315 20316 20317 20318 20319 |
# File 'lib/aws-sdk-sagemaker/types.rb', line 20315 class UpdateTrialRequest < Struct.new( :trial_name, :display_name) include Aws::Structure end |