Amazon.MachineLearning.AmazonMachineLearningClient.UpdateBatchPrediction C# (CSharp) Метод

UpdateBatchPrediction() публичный Метод

Updates the BatchPredictionName of a BatchPrediction.

You can use the GetBatchPrediction operation to view the contents of the updated data element.

/// An error on the server occurred when trying to process a request. /// /// An error on the client occurred. Typically, the cause is an invalid input value. /// /// A specified resource cannot be located. ///
public UpdateBatchPrediction ( string batchPredictionId, string batchPredictionName ) : UpdateBatchPredictionResponse
batchPredictionId string The ID assigned to the BatchPrediction during creation.
batchPredictionName string A new user-supplied name or description of the BatchPrediction.
Результат UpdateBatchPredictionResponse
        public UpdateBatchPredictionResponse UpdateBatchPrediction(string batchPredictionId, string batchPredictionName)
        {
            var request = new UpdateBatchPredictionRequest();
            request.BatchPredictionId = batchPredictionId;
            request.BatchPredictionName = batchPredictionName;
            return UpdateBatchPrediction(request);
        }

Same methods

AmazonMachineLearningClient::UpdateBatchPrediction ( UpdateBatchPredictionRequest request ) : UpdateBatchPredictionResponse
AmazonMachineLearningClient