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

WorkflowStepSummary

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

The summary of the step in a migration workflow.

interface WorkflowStepSummary {
description?: string | null;
name?: string | null;
next?: string[] | null;
noOfSrvCompleted?: number | null;
noOfSrvFailed?: number | null;
owner?: Owner | null;
previous?: string[] | null;
scriptLocation?: string | null;
status?: StepStatus | null;
statusMessage?: string | null;
stepActionType?: StepActionType | null;
stepId?: string | null;
totalNoOfSrv?: number | null;
}

§Properties

§
description?: string | null
[src]

The description of the step.

§
name?: string | null
[src]

The name of the step.

§
noOfSrvCompleted?: number | null
[src]

The number of servers that have been migrated.

§
noOfSrvFailed?: number | null
[src]

The number of servers that have failed to migrate.

§
owner?: Owner | null
[src]

The owner of the step.

§
scriptLocation?: string | null
[src]

The location of the script.

§
status?: StepStatus | null
[src]

The status of the step.

§
statusMessage?: string | null
[src]

The status message of the migration workflow.

§
stepActionType?: StepActionType | null
[src]

The action type of the step. You must run and update the status of a manual step for the workflow to continue after the completion of the step.

§
stepId?: string | null
[src]

The ID of the step.

§
totalNoOfSrv?: number | null
[src]

The total number of servers that have been migrated.