Interface WorkflowsCreateRequest._FinalStage
-
- All Known Implementing Classes:
WorkflowsCreateRequest.Builder
- Enclosing class:
- WorkflowsCreateRequest
public static interface WorkflowsCreateRequest._FinalStage
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowsCreateRequestbuild()WorkflowsCreateRequest._FinalStagesteps(java.util.List<WorkflowStepDefinition> steps)WorkflowsCreateRequest._FinalStagesteps(java.util.Optional<java.util.List<WorkflowStepDefinition>> steps)The steps that define the workflow's processing graph.
-
-
-
Method Detail
-
build
WorkflowsCreateRequest build()
-
steps
WorkflowsCreateRequest._FinalStage steps(java.util.Optional<java.util.List<WorkflowStepDefinition>> steps)
The steps that define the workflow's processing graph. Each step has a
type, a uniquename, and optionalnextentries that define routing to downstream steps.When omitted, the workflow is created with default steps (
TRIGGER→PARSE). The default steps may change in the future.See the Configuring Workflows via API guide for step definitions, branching patterns, and examples.
-
steps
WorkflowsCreateRequest._FinalStage steps(java.util.List<WorkflowStepDefinition> steps)
-
-