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

CreateWorkflowStepRequest

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

§Properties

§
description?: string | null
[src]

The description of the step.

§
name: string
[src]

The name of the step.

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

The key value pairs added for the expected output.

§
stepActionType: StepActionType
[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 source or target environments.