Interface ClusterOperationStep.Builder
-
- All Superinterfaces:
Buildable
,CopyableBuilder<ClusterOperationStep.Builder,ClusterOperationStep>
,SdkBuilder<ClusterOperationStep.Builder,ClusterOperationStep>
,SdkPojo
- Enclosing class:
- ClusterOperationStep
public static interface ClusterOperationStep.Builder extends SdkPojo, CopyableBuilder<ClusterOperationStep.Builder,ClusterOperationStep>
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description default ClusterOperationStep.Builder
stepInfo(Consumer<ClusterOperationStepInfo.Builder> stepInfo)
Information about the step and its status.ClusterOperationStep.Builder
stepInfo(ClusterOperationStepInfo stepInfo)
Information about the step and its status.ClusterOperationStep.Builder
stepName(String stepName)
The name of the step.-
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
-
stepInfo
ClusterOperationStep.Builder stepInfo(ClusterOperationStepInfo stepInfo)
Information about the step and its status.
- Parameters:
stepInfo
-Information about the step and its status.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
stepInfo
default ClusterOperationStep.Builder stepInfo(Consumer<ClusterOperationStepInfo.Builder> stepInfo)
Information about the step and its status.
This is a convenience method that creates an instance of theClusterOperationStepInfo.Builder
avoiding the need to create one manually viaClusterOperationStepInfo.builder()
.When the
Consumer
completes,SdkBuilder.build()
is called immediately and its result is passed tostepInfo(ClusterOperationStepInfo)
.- Parameters:
stepInfo
- a consumer that will call methods onClusterOperationStepInfo.Builder
- Returns:
- Returns a reference to this object so that method calls can be chained together.
- See Also:
stepInfo(ClusterOperationStepInfo)
-
stepName
ClusterOperationStep.Builder stepName(String stepName)
The name of the step.
- Parameters:
stepName
-The name of the step.
- Returns:
- Returns a reference to this object so that method calls can be chained together.
-
-