Class: Aws::MachineLearning::Types::GetMLModelInput

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

{
  ml_model_id: "EntityId", # required
  verbose: false,
}

Instance Attribute Summary collapse

Instance Attribute Details

#ml_model_idString

The ID assigned to the ‘MLModel` at creation.

Returns:

  • (String)


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

#verboseBoolean

Specifies whether the ‘GetMLModel` operation should return `Recipe`.

If true, ‘Recipe` is returned.

If false, ‘Recipe` is not returned.

Returns:

  • (Boolean)


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