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

WorkflowStepOutput

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

The output of a step.

interface WorkflowStepOutput {
dataType?: DataType | null;
name?: string | null;
required?: boolean | null;
value?: WorkflowStepOutputUnion | null;
}

§Properties

§
dataType?: DataType | null
[src]

The data type of the output.

§
name?: string | null
[src]

The name of the step.

§
required?: boolean | null
[src]

Determine if an output is required from a step.

§

The value of the output.