Class: Aws::SageMaker::Types::CreateTrialRequest

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 CreateTrialRequest data as a hash:

{
  trial_name: "ExperimentEntityName", # required
  display_name: "ExperimentEntityName",
  experiment_name: "ExperimentEntityName", # required
  tags: [
    {
      key: "TagKey", # required
      value: "TagValue", # required
    },
  ],
}

Instance Attribute Summary collapse

Instance Attribute Details

#display_nameString

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

Returns:

  • (String)


5043
5044
5045
5046
5047
5048
5049
# File 'lib/aws-sdk-sagemaker/types.rb', line 5043

class CreateTrialRequest < Struct.new(
  :trial_name,
  :display_name,
  :experiment_name,
  :tags)
  include Aws::Structure
end

#experiment_nameString

The name of the experiment to associate the trial with.

Returns:

  • (String)


5043
5044
5045
5046
5047
5048
5049
# File 'lib/aws-sdk-sagemaker/types.rb', line 5043

class CreateTrialRequest < Struct.new(
  :trial_name,
  :display_name,
  :experiment_name,
  :tags)
  include Aws::Structure
end

#tagsArray<Types::Tag>

A list of tags to associate with the trial. You can use Search API to search on the tags.

Returns:



5043
5044
5045
5046
5047
5048
5049
# File 'lib/aws-sdk-sagemaker/types.rb', line 5043

class CreateTrialRequest < Struct.new(
  :trial_name,
  :display_name,
  :experiment_name,
  :tags)
  include Aws::Structure
end

#trial_nameString

The name of the trial. The name must be unique in your AWS account and is not case-sensitive.

Returns:

  • (String)


5043
5044
5045
5046
5047
5048
5049
# File 'lib/aws-sdk-sagemaker/types.rb', line 5043

class CreateTrialRequest < Struct.new(
  :trial_name,
  :display_name,
  :experiment_name,
  :tags)
  include Aws::Structure
end