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

ExecutionDetails

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

Describes the details of the flow run, including the timestamp, status, and message.

interface ExecutionDetails {
mostRecentExecutionMessage?: string | null;
mostRecentExecutionStatus?: ExecutionStatus | null;
mostRecentExecutionTime?: Date | number | null;
}

§Properties

§
mostRecentExecutionMessage?: string | null
[src]

Describes the details of the most recent flow run.

§
mostRecentExecutionStatus?: ExecutionStatus | null
[src]

Specifies the status of the most recent flow run.

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

Specifies the time of the most recent flow run.