Class: Aws::MachineLearning::Types::UpdateEvaluationInput

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

Overview

Note:

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

{
  evaluation_id: "EntityId", # required
  evaluation_name: "EntityName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#evaluation_idString

The ID assigned to the ‘Evaluation` during creation.

Returns:

  • (String)


3892
3893
3894
3895
3896
# File 'lib/aws-sdk-machinelearning/types.rb', line 3892

class UpdateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name)
  include Aws::Structure
end

#evaluation_nameString

A new user-supplied name or description of the ‘Evaluation` that will replace the current content.

Returns:

  • (String)


3892
3893
3894
3895
3896
# File 'lib/aws-sdk-machinelearning/types.rb', line 3892

class UpdateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name)
  include Aws::Structure
end