interface TaskOrchestrationContainer {
    children?: TaskOrchestrationItem[];
    continueOnError?: boolean;
    data?: { [key: string]: string };
    itemType?: TaskOrchestrationItemType;
    maxConcurrency?: number;
    parallel?: boolean;
    rollback?: TaskOrchestrationContainer;
}

Hierarchy (View Summary)

Properties

continueOnError?: boolean
data?: { [key: string]: string }
maxConcurrency?: number
parallel?: boolean