Class: Aws::MachineLearning::Types::UpdateBatchPredictionInput

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

{
  batch_prediction_id: "EntityId", # required
  batch_prediction_name: "EntityName", # required
}

Instance Attribute Summary collapse

Instance Attribute Details

#batch_prediction_idString

The ID assigned to the ‘BatchPrediction` during creation.

Returns:

  • (String)


3713
3714
3715
3716
3717
# File 'lib/aws-sdk-machinelearning/types.rb', line 3713

class UpdateBatchPredictionInput < Struct.new(
  :batch_prediction_id,
  :batch_prediction_name)
  include Aws::Structure
end

#batch_prediction_nameString

A new user-supplied name or description of the ‘BatchPrediction`.

Returns:

  • (String)


3713
3714
3715
3716
3717
# File 'lib/aws-sdk-machinelearning/types.rb', line 3713

class UpdateBatchPredictionInput < Struct.new(
  :batch_prediction_id,
  :batch_prediction_name)
  include Aws::Structure
end