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

GetWorkflowStepResponse

import type { GetWorkflowStepResponse } from "https://aws-api.deno.dev/v0.4/services/migrationhuborchestrator.ts?docs=full";
interface GetWorkflowStepResponse {
creationTime?: Date | number | null;
description?: string | null;
endTime?: Date | number | null;
lastStartTime?: Date | number | null;
name?: string | null;
next?: string[] | null;
noOfSrvCompleted?: number | null;
noOfSrvFailed?: number | null;
outputs?: WorkflowStepOutput[] | null;
owner?: Owner | null;
previous?: string[] | null;
scriptOutputLocation?: string | null;
status?: StepStatus | null;
statusMessage?: string | null;
stepActionType?: StepActionType | null;
stepGroupId?: string | null;
stepId?: string | null;
stepTarget?: string[] | null;
totalNoOfSrv?: number | null;
workflowId?: string | null;
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | null;
}

§Properties

§
creationTime?: Date | number | null
[src]

The time at which the step was created.

§
description?: string | null
[src]

The description of the step.

§
endTime?: Date | number | null
[src]

The time at which the step ended.

§
lastStartTime?: Date | number | null
[src]

The time at which the workflow was last started.

§
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.

§
outputs?: WorkflowStepOutput[] | null
[src]

The outputs of the step.

§
owner?: Owner | null
[src]

The owner of the step.

§
scriptOutputLocation?: string | null
[src]

The output 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.

§
stepGroupId?: string | null
[src]

The ID of the step group.

§
stepId?: string | null
[src]

The ID of the step.

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

The servers on which a step will be run.

§
totalNoOfSrv?: number | null
[src]

The total number of servers that have been migrated.

§
workflowId?: string | null
[src]

The ID of the migration workflow.

§
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | null
[src]

The custom script to run tests on source or target environments.