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

FlowExecutionSummary

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

An object that contains summary information about a flow execution.

interface FlowExecutionSummary {
createdAt?: Date | number | null;
flowExecutionId?: string | null;
flowTemplateId?: string | null;
status?: FlowExecutionStatus | null;
systemInstanceId?: string | null;
updatedAt?: Date | number | null;
}

§Properties

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

The date and time when the flow execution summary was created.

§
flowExecutionId?: string | null
[src]

The ID of the flow execution.

§
flowTemplateId?: string | null
[src]

The ID of the flow.

§
status?: FlowExecutionStatus | null
[src]

The current status of the flow execution.

§
systemInstanceId?: string | null
[src]

The ID of the system instance that contains the flow.

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

The date and time when the flow execution summary was last updated.