You are viewing documentation for version 2 of the AWS SDK for Ruby. Version 3 documentation can be found here.

Class: Aws::MachineLearning::Types::PredictInput

Inherits:
Struct
  • Object
show all
Defined in:
(unknown)

Overview

Note:

When passing PredictInput as input to an Aws::Client method, you can use a vanilla Hash:

{
  ml_model_id: "EntityId", # required
  record: { # required
    "VariableName" => "VariableValue",
  },
  predict_endpoint: "VipURL", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#ml_model_idString

A unique identifier of the MLModel.

Returns:

  • (String)

    A unique identifier of the MLModel.

#predict_endpointString

Returns:

  • (String)

#recordHash<String,String>

A map of variable name-value pairs that represent an observation.

Returns:

  • (Hash<String,String>)

    A map of variable name-value pairs that represent an observation.

    .