Class: Aws::SageMaker::Types::CreateTrialRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::SageMaker::Types::CreateTrialRequest
- 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
-
#display_name ⇒ String
The name of the trial as displayed.
-
#experiment_name ⇒ String
The name of the experiment to associate the trial with.
-
#tags ⇒ Array<Types::Tag>
A list of tags to associate with the trial.
-
#trial_name ⇒ String
The name of the trial.
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.
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_name ⇒ String
The name of the experiment to associate the trial with.
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 |
#tags ⇒ Array<Types::Tag>
A list of tags to associate with the trial. You can use Search API to search on the tags.
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_name ⇒ String
The name of the trial. The name must be unique in your AWS account and is not case-sensitive.
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 |