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

FlowExecutionMessage

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

An object that contains information about a flow event.

interface FlowExecutionMessage {
eventType?: FlowExecutionEventType | null;
messageId?: string | null;
payload?: string | null;
timestamp?: Date | number | null;
}

§Properties

§
eventType?: FlowExecutionEventType | null
[src]

The type of flow event .

§
messageId?: string | null
[src]

The unique identifier of the message.

§
payload?: string | null
[src]

A string containing information about the flow event.

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

The date and time when the message was last updated.