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

BatchInferenceJob

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

Contains information on a batch inference job.

interface BatchInferenceJob {
batchInferenceJobArn?: string | null;
batchInferenceJobConfig?: BatchInferenceJobConfig | null;
creationDateTime?: Date | number | null;
failureReason?: string | null;
filterArn?: string | null;
jobInput?: BatchInferenceJobInput | null;
jobName?: string | null;
jobOutput?: BatchInferenceJobOutput | null;
lastUpdatedDateTime?: Date | number | null;
numResults?: number | null;
roleArn?: string | null;
solutionVersionArn?: string | null;
status?: string | null;
}

§Properties

§
batchInferenceJobArn?: string | null
[src]

The Amazon Resource Name (ARN) of the batch inference job.

§
batchInferenceJobConfig?: BatchInferenceJobConfig | null
[src]

A string to string map of the configuration details of a batch inference job.

§
creationDateTime?: Date | number | null
[src]

The time at which the batch inference job was created.

§
failureReason?: string | null
[src]

If the batch inference job failed, the reason for the failure.

§
filterArn?: string | null
[src]

The ARN of the filter used on the batch inference job.

§
jobInput?: BatchInferenceJobInput | null
[src]

The Amazon S3 path that leads to the input data used to generate the batch inference job.

§
jobName?: string | null
[src]

The name of the batch inference job.

§
jobOutput?: BatchInferenceJobOutput | null
[src]

The Amazon S3 bucket that contains the output data generated by the batch inference job.

§
lastUpdatedDateTime?: Date | number | null
[src]

The time at which the batch inference job was last updated.

§
numResults?: number | null
[src]

The number of recommendations generated by the batch inference job. This number includes the error messages generated for failed input records.

§
roleArn?: string | null
[src]

The ARN of the Amazon Identity and Access Management (IAM) role that requested the batch inference job.

§
solutionVersionArn?: string | null
[src]

The Amazon Resource Name (ARN) of the solution version from which the batch inference job was created.

§
status?: string | null
[src]

The status of the batch inference job. The status is one of the following values:

  • PENDING
  • IN PROGRESS
  • ACTIVE
  • CREATE FAILED