You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

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

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing CreateTrialRequest as input to an Aws::Client method, you can use a vanilla 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)

    The name of the trial as displayed.

#experiment_nameString

The name of the experiment to associate the trial with.

Returns:

  • (String)

    The name of the experiment to associate the trial with.

#tagsArray<Types::Tag>

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

Returns:

  • (Array<Types::Tag>)

    A list of tags to associate with the trial.

#trial_nameString

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

Returns:

  • (String)

    The name of the trial.