Class: Aws::SageMaker::Types::CreateExperimentRequest

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#descriptionString

The description of the experiment.

Returns:

  • (String)


2810
2811
2812
2813
2814
2815
2816
# File 'lib/aws-sdk-sagemaker/types.rb', line 2810

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

#display_nameString

The name of the experiment as displayed. The name doesn’t need to be unique. If you don’t specify ‘DisplayName`, the value in `ExperimentName` is displayed.

Returns:

  • (String)


2810
2811
2812
2813
2814
2815
2816
# File 'lib/aws-sdk-sagemaker/types.rb', line 2810

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

#experiment_nameString

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

Returns:

  • (String)


2810
2811
2812
2813
2814
2815
2816
# File 'lib/aws-sdk-sagemaker/types.rb', line 2810

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

#tagsArray<Types::Tag>

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

Returns:



2810
2811
2812
2813
2814
2815
2816
# File 'lib/aws-sdk-sagemaker/types.rb', line 2810

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