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.4/services/frauddetector.ts?docs=full";

The batch prediction details.

interface BatchPrediction {
arn?: string | null;
completionTime?: string | null;
detectorName?: string | null;
detectorVersion?: string | null;
eventTypeName?: string | null;
failureReason?: string | null;
iamRoleArn?: string | null;
inputPath?: string | null;
jobId?: string | null;
lastHeartbeatTime?: string | null;
outputPath?: string | null;
processedRecordsCount?: number | null;
startTime?: string | null;
status?: AsyncJobStatus | null;
totalRecordsCount?: number | null;
}

§Properties

§
arn?: string | null
[src]

The ARN of batch prediction job.

§
completionTime?: string | null
[src]

Timestamp of when the batch prediction job completed.

§
detectorName?: string | null
[src]

The name of the detector.

§
detectorVersion?: string | null
[src]

The detector version.

§
eventTypeName?: string | null
[src]

The name of the event type.

§
failureReason?: string | null
[src]

The reason a batch prediction job failed.

§
iamRoleArn?: string | null
[src]

The ARN of the IAM role to use for this job request.

§
inputPath?: string | null
[src]

The Amazon S3 location of your training file.

§
jobId?: string | null
[src]

The job ID for the batch prediction.

§
lastHeartbeatTime?: string | null
[src]

Timestamp of most recent heartbeat indicating the batch prediction job was making progress.

§
outputPath?: string | null
[src]

The Amazon S3 location of your output file.

§
processedRecordsCount?: number | null
[src]

The number of records processed by the batch prediction job.

§
startTime?: string | null
[src]

Timestamp of when the batch prediction job started.

§
status?: AsyncJobStatus | null
[src]

The batch prediction status.

§
totalRecordsCount?: number | null
[src]

The total number of records in the batch prediction job.