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

WorkflowTypeDetail

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

Contains details about a workflow type.

interface WorkflowTypeDetail {
typeInfo: WorkflowTypeInfo;
}

§Properties

§

Configuration settings of the workflow type registered through "RegisterWorkflowType"

§

General information about the workflow type.

The status of the workflow type (returned in the WorkflowTypeInfo structure) can be one of the following.

  • REGISTERED – The type is registered and available. Workers supporting this type should be running.
  • DEPRECATED – The type was deprecated using "DeprecateWorkflowType", but is still in use. You should keep workers supporting this type running. You cannot create new workflow executions of this type.