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

ExecutionResult

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

Specifies the end result of the flow run.

interface ExecutionResult {
bytesProcessed?: number | null;
bytesWritten?: number | null;
errorInfo?: ErrorInfo | null;
recordsProcessed?: number | null;
}

§Properties

§
bytesProcessed?: number | null
[src]

The total number of bytes processed by the flow run.

§
bytesWritten?: number | null
[src]

The total number of bytes written as a result of the flow run.

§
errorInfo?: ErrorInfo | null
[src]

Provides any error message information related to the flow run.

§
recordsProcessed?: number | null
[src]

The number of records processed in the flow run.