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

WorkflowStepOutputUnion

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

A structure to hold multiple values of an output.

interface WorkflowStepOutputUnion {
integerValue?: number | null;
listOfStringValue?: string[] | null;
stringValue?: string | null;
}

§Properties

§
integerValue?: number | null
[src]

The integer value.

§
listOfStringValue?: string[] | null
[src]

The list of string value.

§
stringValue?: string | null
[src]

The string value.