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

ExecutionRecord

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

Specifies information about the past flow run instances for a given flow.

interface ExecutionRecord {
dataPullEndTime?: Date | number | null;
dataPullStartTime?: Date | number | null;
executionId?: string | null;
executionResult?: ExecutionResult | null;
executionStatus?: ExecutionStatus | null;
lastUpdatedAt?: Date | number | null;
metadataCatalogDetails?: MetadataCatalogDetail[] | null;
startedAt?: Date | number | null;
}

§Properties

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

The timestamp that indicates the last new or updated record to be transferred in the flow run.

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

The timestamp that determines the first new or updated record to be transferred in the flow run.

§
executionId?: string | null
[src]

Specifies the identifier of the given flow run.

§
executionResult?: ExecutionResult | null
[src]

Describes the result of the given flow run.

§
executionStatus?: ExecutionStatus | null
[src]

Specifies the flow run status and whether it is in progress, has completed successfully, or has failed.

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

Specifies the time of the most recent update.

§
metadataCatalogDetails?: MetadataCatalogDetail[] | null
[src]

Describes the metadata catalog, metadata table, and data partitions that Amazon AppFlow used for the associated flow run.

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

Specifies the start time of the flow run.