Class: Aws::MachineLearning::Types::UpdateEvaluationInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::UpdateEvaluationInput
- 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
-
#evaluation_id ⇒ String
The ID assigned to the ‘Evaluation` during creation.
-
#evaluation_name ⇒ String
A new user-supplied name or description of the ‘Evaluation` that will replace the current content.
Instance Attribute Details
#evaluation_id ⇒ String
The ID assigned to the ‘Evaluation` during creation.
3791 3792 3793 3794 3795 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3791 class UpdateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name) include Aws::Structure end |
#evaluation_name ⇒ String
A new user-supplied name or description of the ‘Evaluation` that will replace the current content.
3791 3792 3793 3794 3795 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 3791 class UpdateEvaluationInput < Struct.new( :evaluation_id, :evaluation_name) include Aws::Structure end |