Class: Aws::MachineLearning::Types::GetMLModelInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::GetMLModelInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Note:
When making an API call, you may pass GetMLModelInput data as a hash:
{
ml_model_id: "EntityId", # required
verbose: false,
}
Instance Attribute Summary collapse
-
#ml_model_id ⇒ String
The ID assigned to the ‘MLModel` at creation.
-
#verbose ⇒ Boolean
Specifies whether the ‘GetMLModel` operation should return `Recipe`.
Instance Attribute Details
#ml_model_id ⇒ String
The ID assigned to the ‘MLModel` at creation.
2325 2326 2327 2328 2329 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2325 class GetMLModelInput < Struct.new( :ml_model_id, :verbose) include Aws::Structure end |
#verbose ⇒ Boolean
Specifies whether the ‘GetMLModel` operation should return `Recipe`.
If true, ‘Recipe` is returned.
If false, ‘Recipe` is not returned.
2325 2326 2327 2328 2329 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2325 class GetMLModelInput < Struct.new( :ml_model_id, :verbose) include Aws::Structure end |