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

BatchImport

import type { BatchImport } from "https://aws-api.deno.dev/v0.4/services/frauddetector.ts?docs=full";

The batch import job details.

interface BatchImport {
arn?: string | null;
completionTime?: string | null;
eventTypeName?: string | null;
failedRecordsCount?: number | null;
failureReason?: string | null;
iamRoleArn?: string | null;
inputPath?: string | null;
jobId?: 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 the batch import job.

§
completionTime?: string | null
[src]

Timestamp of when batch import job completed.

§
eventTypeName?: string | null
[src]

The name of the event type.

§
failedRecordsCount?: number | null
[src]

The number of records that failed to import.

§
failureReason?: string | null
[src]

The reason batch import 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 data file for batch import.

§
jobId?: string | null
[src]

The ID of the batch import job.

§
outputPath?: string | null
[src]

The Amazon S3 location of your output file.

§
processedRecordsCount?: number | null
[src]

The number of records processed by batch import job.

§
startTime?: string | null
[src]

Timestamp of when the batch import job started.

§
status?: AsyncJobStatus | null
[src]

The status of the batch import job.

§
totalRecordsCount?: number | null
[src]

The total number of records in the batch import job.