Class: Aws::MachineLearning::Types::PredictInput
- Inherits:
-
Struct
- Object
- Struct
- Aws::MachineLearning::Types::PredictInput
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-machinelearning/types.rb
Overview
Note:
When making an API call, you may pass PredictInput data as a hash:
{
ml_model_id: "EntityId", # required
record: { # required
"VariableName" => "VariableValue",
},
predict_endpoint: "VipURL", # required
}
Instance Attribute Summary collapse
-
#ml_model_id ⇒ String
A unique identifier of the ‘MLModel`.
- #predict_endpoint ⇒ String
-
#record ⇒ Hash<String,String>
A map of variable name-value pairs that represent an observation.
Instance Attribute Details
#ml_model_id ⇒ String
A unique identifier of the ‘MLModel`.
2835 2836 2837 2838 2839 2840 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2835 class PredictInput < Struct.new( :ml_model_id, :record, :predict_endpoint) include Aws::Structure end |
#predict_endpoint ⇒ String
2835 2836 2837 2838 2839 2840 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2835 class PredictInput < Struct.new( :ml_model_id, :record, :predict_endpoint) include Aws::Structure end |
#record ⇒ Hash<String,String>
A map of variable name-value pairs that represent an observation.
2835 2836 2837 2838 2839 2840 |
# File 'lib/aws-sdk-machinelearning/types.rb', line 2835 class PredictInput < Struct.new( :ml_model_id, :record, :predict_endpoint) include Aws::Structure end |