StartWorkflowExecutionInput
import type { StartWorkflowExecutionInput } from "https://aws-api-gyr5wj9zj0fg.deno.dev/v0.2/services/swf.ts";interface StartWorkflowExecutionInput {
childPolicy?: ChildPolicy | null;
domain: string;
executionStartToCloseTimeout?: string | null;
input?: string | null;
lambdaRole?: string | null;
tagList?: string[] | null;
taskList?: TaskList | null;
taskPriority?: string | null;
taskStartToCloseTimeout?: string | null;
workflowId: string;
workflowType: WorkflowType;
}