Class: Aws::MachineLearning::Types::CreateEvaluationInput

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

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

Instance Attribute Summary collapse

Instance Attribute Details

#evaluation_data_source_idString

The ID of the ‘DataSource` for the evaluation. The schema of the `DataSource` must match the schema used to create the `MLModel`.

Returns:

  • (String)


596
597
598
599
600
601
602
# File 'lib/aws-sdk-machinelearning/types.rb', line 596

class CreateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name,
  :ml_model_id,
  :evaluation_data_source_id)
  include Aws::Structure
end

#evaluation_idString

A user-supplied ID that uniquely identifies the ‘Evaluation`.

Returns:

  • (String)


596
597
598
599
600
601
602
# File 'lib/aws-sdk-machinelearning/types.rb', line 596

class CreateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name,
  :ml_model_id,
  :evaluation_data_source_id)
  include Aws::Structure
end

#evaluation_nameString

A user-supplied name or description of the ‘Evaluation`.

Returns:

  • (String)


596
597
598
599
600
601
602
# File 'lib/aws-sdk-machinelearning/types.rb', line 596

class CreateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name,
  :ml_model_id,
  :evaluation_data_source_id)
  include Aws::Structure
end

#ml_model_idString

The ID of the ‘MLModel` to evaluate.

The schema used in creating the ‘MLModel` must match the schema of the `DataSource` used in the `Evaluation`.

Returns:

  • (String)


596
597
598
599
600
601
602
# File 'lib/aws-sdk-machinelearning/types.rb', line 596

class CreateEvaluationInput < Struct.new(
  :evaluation_id,
  :evaluation_name,
  :ml_model_id,
  :evaluation_data_source_id)
  include Aws::Structure
end