Interface WorkflowState.Builder
-
- All Superinterfaces:
Buildable,CopyableBuilder<WorkflowState.Builder,WorkflowState>,SdkBuilder<WorkflowState.Builder,WorkflowState>,SdkPojo
- Enclosing class:
- WorkflowState
public static interface WorkflowState.Builder extends SdkPojo, CopyableBuilder<WorkflowState.Builder,WorkflowState>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description WorkflowState.Builderreason(String reason)Describes how or why the workflow changed state.WorkflowState.Builderstatus(String status)The current state of the workflow.WorkflowState.Builderstatus(WorkflowStatus status)The current state of the workflow.-
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, sdkFields
-
-
-
-
Method Detail
-
status
WorkflowState.Builder status(String status)
The current state of the workflow.
- Parameters:
status- The current state of the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowStatus,WorkflowStatus
-
status
WorkflowState.Builder status(WorkflowStatus status)
The current state of the workflow.
- Parameters:
status- The current state of the workflow.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
WorkflowStatus,WorkflowStatus
-
reason
WorkflowState.Builder reason(String reason)
Describes how or why the workflow changed state.
- Parameters:
reason- Describes how or why the workflow changed state.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-