Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

BatchPrediction

import type { BatchPrediction } from "https://aws-api.deno.dev/v0.3/services/machinelearning.ts?docs=full";

Represents the output of a GetBatchPrediction operation.

The content consists of the detailed metadata, the status, and the data file information of a Batch Prediction.

interface BatchPrediction {
BatchPredictionDataSourceId?: string | null;
BatchPredictionId?: string | null;
ComputeTime?: number | null;
CreatedAt?: Date | number | null;
CreatedByIamUser?: string | null;
FinishedAt?: Date | number | null;
InputDataLocationS3?: string | null;
InvalidRecordCount?: number | null;
LastUpdatedAt?: Date | number | null;
Message?: string | null;
MLModelId?: string | null;
Name?: string | null;
OutputUri?: string | null;
StartedAt?: Date | number | null;
Status?: EntityStatus | null;
TotalRecordCount?: number | null;
}

§Properties

§
BatchPredictionDataSourceId?: string | null
[src]

The ID of the DataSource that points to the group of observations to predict.

§
BatchPredictionId?: string | null
[src]

The ID assigned to the BatchPrediction at creation. This value should be identical to the value of the BatchPredictionID in the request.

§
ComputeTime?: number | null
[src]
§
CreatedAt?: Date | number | null
[src]

The time that the BatchPrediction was created. The time is expressed in epoch time.

§
CreatedByIamUser?: string | null
[src]

The AWS user account that invoked the BatchPrediction. The account type can be either an AWS root account or an AWS Identity and Access Management (IAM) user account.

§
FinishedAt?: Date | number | null
[src]
§
InputDataLocationS3?: string | null
[src]

The location of the data file or directory in Amazon Simple Storage Service (Amazon S3).

§
InvalidRecordCount?: number | null
[src]
§
LastUpdatedAt?: Date | number | null
[src]

The time of the most recent edit to the BatchPrediction. The time is expressed in epoch time.

§
Message?: string | null
[src]

A description of the most recent details about processing the batch prediction request.

§
MLModelId?: string | null
[src]

The ID of the MLModel that generated predictions for the BatchPrediction request.

§
Name?: string | null
[src]

A user-supplied name or description of the BatchPrediction.

§
OutputUri?: string | null
[src]

The location of an Amazon S3 bucket or directory to receive the operation results. The following substrings are not allowed in the s3 key portion of the outputURI field: ':', '//', '/./', '/../'.

§
StartedAt?: Date | number | null
[src]
§
Status?: EntityStatus | null
[src]

The status of the BatchPrediction. This element can have one of the following values:

  • PENDING - Amazon Machine Learning (Amazon ML) submitted a request to generate predictions for a batch of observations.
  • INPROGRESS - The process is underway.
  • FAILED - The request to perform a batch prediction did not run to completion. It is not usable.
  • COMPLETED - The batch prediction process completed successfully.
  • DELETED - The BatchPrediction is marked as deleted. It is not usable.
§
TotalRecordCount?: number | null
[src]