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

UpdateWorkflowStepRequest

import type { UpdateWorkflowStepRequest } from "https://aws-api.deno.dev/v0.4/services/migrationhuborchestrator.ts?docs=full";
interface UpdateWorkflowStepRequest {
description?: string | null;
id: string;
name?: string | null;
next?: string[] | null;
outputs?: WorkflowStepOutput[] | null;
previous?: string[] | null;
status?: StepStatus | null;
stepActionType?: StepActionType | null;
stepGroupId: string;
stepTarget?: string[] | null;
workflowId: string;
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | null;
}

§Properties

§
description?: string | null
[src]

The description of the step.

§
id: string
[src]

The ID of the step.

§
name?: string | null
[src]

The name of the step.

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

The outputs of a step.

§
status?: StepStatus | null
[src]

The status of the step.

§
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
[src]

The ID of the step group.

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

The servers on which a step will be run.

§
workflowId: string
[src]

The ID of the migration workflow.

§
workflowStepAutomationConfiguration?: WorkflowStepAutomationConfiguration | null
[src]

The custom script to run tests on the source and target environments.