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

GetImportJobResponse

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

An HTTP 200 response if the request succeeds, or an error message if the request fails.

interface GetImportJobResponse {
CompletedTimestamp?: Date | number | null;
CreatedTimestamp?: Date | number | null;
FailedRecordsCount?: number | null;
FailureInfo?: FailureInfo | null;
ImportDataSource?: ImportDataSource | null;
ImportDestination?: ImportDestination | null;
JobId?: string | null;
JobStatus?: JobStatus | null;
ProcessedRecordsCount?: number | null;
}

§Properties

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

The time stamp of when the import job was completed.

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

The time stamp of when the import job was created.

§
FailedRecordsCount?: number | null
[src]

The number of records that failed processing because of invalid input or other reasons.

§
FailureInfo?: FailureInfo | null
[src]

The failure details about an import job.

§
ImportDataSource?: ImportDataSource | null
[src]

The data source of the import job.

§
ImportDestination?: ImportDestination | null
[src]

The destination of the import job.

§
JobId?: string | null
[src]

A string that represents the import job ID.

§
JobStatus?: JobStatus | null
[src]

The status of the import job.

§
ProcessedRecordsCount?: number | null
[src]

The current number of records processed.