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

StepInput

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

A map of key value pairs that is generated when you create a migration workflow. The key value pairs will differ based on your selection of the template.

interface StepInput {
integerValue?: number | null;
listOfStringsValue?: string[] | null;
mapOfStringValue?: {
[key: string]: string | null | undefined;
}
| null;
stringValue?: string | null;
}

§Properties

§
integerValue?: number | null
[src]

The value of the integer.

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

List of string values.

§
mapOfStringValue?: {
[key: string]: string | null | undefined;
}
| null
[src]

Map of string values.

§
stringValue?: string | null
[src]

String value.