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

WorkflowTypeInfo

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

Contains information about a workflow type.

interface WorkflowTypeInfo {
creationDate: Date | number;
deprecationDate?: Date | number | null;
description?: string | null;
workflowType: WorkflowType;
}

§Properties

§
creationDate: Date | number
[src]

The date when this type was registered.

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

If the type is in deprecated state, then it is set to the date when the type was deprecated.

§
description?: string | null
[src]

The description of the type registered through "RegisterWorkflowType".

§

The current status of the workflow type.

§
workflowType: WorkflowType
[src]

The workflow type this information is about.