Interface WorkflowExecution.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<WorkflowExecution.Builder,WorkflowExecution>
,SdkBuilder<WorkflowExecution.Builder,WorkflowExecution>
,SdkPojo
- Enclosing class:
- WorkflowExecution
@Mutable @NotThreadSafe public static interface WorkflowExecution.Builder extends SdkPojo, CopyableBuilder<WorkflowExecution.Builder,WorkflowExecution>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowExecution.Builder
runId(String runId)
A system-generated unique identifier for the workflow execution.WorkflowExecution.Builder
workflowId(String workflowId)
The user defined identifier associated with the workflow execution.-
Methods inherited from interface software.amazon.awssdk.utils.builder.CopyableBuilder
copy
-
Methods inherited from interface software.amazon.awssdk.utils.builder.SdkBuilder
applyMutation, build
-
Methods inherited from interface software.amazon.awssdk.core.SdkPojo
equalsBySdkFields, sdkFieldNameToField, sdkFields
-
-
-
-
Method Detail
-
workflowId
WorkflowExecution.Builder workflowId(String workflowId)
The user defined identifier associated with the workflow execution.
- Parameters:
workflowId
- The user defined identifier associated with the workflow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
runId
WorkflowExecution.Builder runId(String runId)
A system-generated unique identifier for the workflow execution.
- Parameters:
runId
- A system-generated unique identifier for the workflow execution.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-