Interface WorkflowStepOutput.Builder
- All Superinterfaces:
Buildable
,CopyableBuilder<WorkflowStepOutput.Builder,
,WorkflowStepOutput> SdkBuilder<WorkflowStepOutput.Builder,
,WorkflowStepOutput> SdkPojo
- Enclosing class:
WorkflowStepOutput
@Mutable
@NotThreadSafe
public static interface WorkflowStepOutput.Builder
extends SdkPojo, CopyableBuilder<WorkflowStepOutput.Builder,WorkflowStepOutput>
-
Method Summary
Modifier and TypeMethodDescriptionThe data type of the output.The data type of the output.The name of the step.Determine if an output is required from a step.default WorkflowStepOutput.Builder
The value of the output.value
(WorkflowStepOutputUnion value) The value of the output.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 Details
-
name
The name of the step.
- Parameters:
name
- The name of the step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
dataType
The data type of the output.
- Parameters:
dataType
- The data type of the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
dataType
The data type of the output.
- Parameters:
dataType
- The data type of the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-
required
Determine if an output is required from a step.
- Parameters:
required
- Determine if an output is required from a step.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
The value of the output.
- Parameters:
value
- The value of the output.- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
value
The value of the output.
This is a convenience method that creates an instance of theWorkflowStepOutputUnion.Builder
avoiding the need to create one manually viaWorkflowStepOutputUnion.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tovalue(WorkflowStepOutputUnion)
.- Parameters:
value
- a consumer that will call methods onWorkflowStepOutputUnion.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
-