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

TaskExecutionResultDetail

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

Describes the detailed result of a TaskExecution operation. This result includes the time in milliseconds spent in each phase, the status of the task execution, and the errors encountered.

interface TaskExecutionResultDetail {
ErrorCode?: string | null;
ErrorDetail?: string | null;
PrepareDuration?: number | null;
PrepareStatus?: PhaseStatus | null;
TotalDuration?: number | null;
TransferDuration?: number | null;
TransferStatus?: PhaseStatus | null;
VerifyDuration?: number | null;
VerifyStatus?: PhaseStatus | null;
}

§Properties

§
ErrorCode?: string | null
[src]

Errors that DataSync encountered during execution of the task. You can use this error code to help troubleshoot issues.

§
ErrorDetail?: string | null
[src]

Detailed description of an error that was encountered during the task execution. You can use this information to help troubleshoot issues.

§
PrepareDuration?: number | null
[src]

The total time in milliseconds that DataSync spent in the PREPARING phase.

§
PrepareStatus?: PhaseStatus | null
[src]

The status of the PREPARING phase.

§
TotalDuration?: number | null
[src]

The total time in milliseconds that DataSync took to transfer the file from the source to the destination location.

§
TransferDuration?: number | null
[src]

The total time in milliseconds that DataSync spent in the TRANSFERRING phase.

§
TransferStatus?: PhaseStatus | null
[src]

The status of the TRANSFERRING phase.

§
VerifyDuration?: number | null
[src]

The total time in milliseconds that DataSync spent in the VERIFYING phase.

§
VerifyStatus?: PhaseStatus | null
[src]

The status of the VERIFYING phase.