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

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

Returns a BatchPrediction that includes detailed metadata, status, and data file information for a Batch Prediction request.
/// 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 GetBatchPredictionAsync ( string batchPredictionId, System cancellationToken = default(CancellationToken) ) : Task
batchPredictionId string An ID assigned to the BatchPrediction at creation.
cancellationToken System /// A cancellation token that can be used by other objects or threads to receive notice of cancellation. ///
Результат Task
        public Task<GetBatchPredictionResponse> GetBatchPredictionAsync(string batchPredictionId, System.Threading.CancellationToken cancellationToken = default(CancellationToken))
        {
            var request = new GetBatchPredictionRequest();
            request.BatchPredictionId = batchPredictionId;
            return GetBatchPredictionAsync(request, cancellationToken);
        }

Same methods

AmazonMachineLearningClient::GetBatchPredictionAsync ( GetBatchPredictionRequest request, System cancellationToken = default(CancellationToken) ) : Task
AmazonMachineLearningClient