Class: Aws::SageMaker::Types::UpdateExperimentRequest

Inherits:
Struct
  • Object
show all
Includes:
Aws::Structure
Defined in:
lib/aws-sdk-sagemaker/types.rb

Overview

Note:

When making an API call, you may pass UpdateExperimentRequest data as a hash:

{
  experiment_name: "ExperimentEntityName", # required
  display_name: "ExperimentEntityName",
  description: "ExperimentDescription",
}

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the experiment.

Returns:

  • (String)


19852
19853
19854
19855
19856
19857
# File 'lib/aws-sdk-sagemaker/types.rb', line 19852

class UpdateExperimentRequest < Struct.new(
  :experiment_name,
  :display_name,
  :description)
  include Aws::Structure
end

#display_nameString

The name of the experiment as displayed. The name doesn’t need to be unique. If ‘DisplayName` isn’t specified, ‘ExperimentName` is displayed.

Returns:

  • (String)


19852
19853
19854
19855
19856
19857
# File 'lib/aws-sdk-sagemaker/types.rb', line 19852

class UpdateExperimentRequest < Struct.new(
  :experiment_name,
  :display_name,
  :description)
  include Aws::Structure
end

#experiment_nameString

The name of the experiment to update.

Returns:

  • (String)


19852
19853
19854
19855
19856
19857
# File 'lib/aws-sdk-sagemaker/types.rb', line 19852

class UpdateExperimentRequest < Struct.new(
  :experiment_name,
  :display_name,
  :description)
  include Aws::Structure
end