Class: Aws::MachineLearning::Types::CreateEvaluationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::CreateEvaluationInput
- Defined in:
- gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#evaluation_data_source_id ⇒ String
The ID of the
DataSource
for the evaluation. -
#evaluation_id ⇒ String
A user-supplied ID that uniquely identifies the
Evaluation
. -
#evaluation_name ⇒ String
A user-supplied name or description of the
Evaluation
. -
#ml_model_id ⇒ String
The ID of the
MLModel
to evaluate.
Instance Attribute Details
#evaluation_data_source_id ⇒ String
The ID of the DataSource
for the evaluation. The schema of the
DataSource
must match the schema used to create the MLModel
.
514 515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 514 class CreateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name, :ml_model_id, :evaluation_data_source_id) SENSITIVE = [] include Aws::Structure end |
#evaluation_id ⇒ String
A user-supplied ID that uniquely identifies the Evaluation
.
514 515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 514 class CreateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name, :ml_model_id, :evaluation_data_source_id) SENSITIVE = [] include Aws::Structure end |
#evaluation_name ⇒ String
A user-supplied name or description of the Evaluation
.
514 515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 514 class CreateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name, :ml_model_id, :evaluation_data_source_id) SENSITIVE = [] include Aws::Structure end |
#ml_model_id ⇒ String
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
.
514 515 516 517 518 519 520 521 |
# File 'gems/aws-sdk-machinelearning/lib/aws-sdk-machinelearning/types.rb', line 514 class CreateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name, :ml_model_id, :evaluation_data_source_id) SENSITIVE = [] include Aws::Structure end |