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

GetImportFileTaskResponse

import type { GetImportFileTaskResponse } from "https://aws-api.deno.dev/v0.4/services/migrationhubstrategy.ts?docs=full";
interface GetImportFileTaskResponse {
completionTime?: Date | number | null;
id?: string | null;
importName?: string | null;
inputS3Bucket?: string | null;
inputS3Key?: string | null;
numberOfRecordsFailed?: number | null;
numberOfRecordsSuccess?: number | null;
startTime?: Date | number | null;
status?: ImportFileTaskStatus | null;
statusReportS3Bucket?: string | null;
statusReportS3Key?: string | null;
}

§Properties

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

The time that the import task completed.

§
id?: string | null
[src]

The import file task id returned in the response of "StartImportFileTask".

§
importName?: string | null
[src]

The name of the import task given in "StartImportFileTask".

§
inputS3Bucket?: string | null
[src]

The S3 bucket where import file is located.

§
inputS3Key?: string | null
[src]

The Amazon S3 key name of the import file.

§
numberOfRecordsFailed?: number | null
[src]

The number of records that failed to be imported.

§
numberOfRecordsSuccess?: number | null
[src]

The number of records successfully imported.

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

Start time of the import task.

§

Status of import file task.

§
statusReportS3Bucket?: string | null
[src]

The S3 bucket name for status report of import task.

§
statusReportS3Key?: string | null
[src]

The Amazon S3 key name for status report of import task. The report contains details about whether each record imported successfully or why it did not.